Macros

  • Thread starter Thread starter David
  • Start date Start date
D

David

I created a macro to use the degree symbol and it runs
well until I enter a number. When a number is entered,
the degree symbol will not operate. How do I need to
develop the macro to function and display a value with the
degree symbol (90°)?
 
Without seeing your code I can only guess you need to
concatenate the number(which I assume is a variable) and
the degree symbol
It would look something like this
mynumber & "°"
 
Back
Top