I have two columns and need to compare if the new sales value has increased to the next level.. example will explain better:
Current Value Max Value Achieved
2400 2600 since $2K has been hit dnt count
3210 2500 Count
10500 11200 Count
I know if you do left(Current Value,1)> Left(Max,1) this will calc when it is a single digit but dont know how to work out if 2 digits is need to see if it has increased..
Current Value Max Value Achieved
2400 2600 since $2K has been hit dnt count
3210 2500 Count
10500 11200 Count
I know if you do left(Current Value,1)> Left(Max,1) this will calc when it is a single digit but dont know how to work out if 2 digits is need to see if it has increased..