I am making a spreadsheet that offers a column for user input. Each worksheet changes based on the month the user has given.
If Target.Value = "January" Then
ActiveSheet.Range("K7:K44").Value = ActiveSheet.Range("BA7:BA44").Value
ElseIf Target.Value = "February" Then
ActiveSheet.Range("K7:K44").Value = ActiveSheer.Range("BB7:BB44").Value
End If
Now the actual macro is cleaner but anyways.. Now if say cell BA7
contains a string that doesn't fit in K7
the client wants a "drop down box" to show up on K7
like a Data Validation List. I have searched and searched and I don't think it's possible but the client says they have seen it somewhere before.
So they don't want wrap text, they don't want shrink to fit.. They want their drop down arrow. Is there any possible way of doing this?