I have had a request from management. I have the following macro assigned to a button
This changes the active cell to N/A
is there a way I can have this work if there are multiple cells selected. The guys find the one by one method too slow. The want to select multiple cells and press a button to apply N/A to them all
Thanks
Regards
Jason Bing
Code:
Sub TaskNotDone ()
With ActiveCell
.Value = "N/A"
End With
End Sub
This changes the active cell to N/A
is there a way I can have this work if there are multiple cells selected. The guys find the one by one method too slow. The want to select multiple cells and press a button to apply N/A to them all
Thanks
Regards
Jason Bing