Forum Discussion

grantlee's avatar
grantlee
New Member
8 years ago
Solved

Week over Week Variance - Waterfall Charts

Hi All, I'm trying to create a waterfall chart to spot changes week over week for forecast for particular customers. However I know I need to create a measure to find the variance but I need it for w...
  • Greg_Deckler's avatar
    Greg_Deckler
    8 years ago

    grantlee - Yeah, what I would do would be to create a column in your data like this:

     

    Column = VALUE(CONCATENATE(LEFT([WW],4),RIGHT([WW],2))

    This should give you a column like 201750, 201801, etc. as numbers. There is probably a way that you could do this where you would get sequential numbers, which would be even more awesome.