Forum Discussion
jracer007
Helper IV
8 years agoComparative last 30 days
Hello community, Today I want to ask you for help to build a formula that allows me to compare the value of yesterday's day against that of 30 days ago. My data source: https://docs.google.com/sp...
- 8 years ago
To use measure, you could refer to DAX below.
Measure = LOOKUPVALUE ( Sheet1[Active Users], Sheet1[Date], MAX ( Sheet1[Date] ) - 30 )
v-chuncz-msft
Community Support
8 years agojracer007
Helper IV
8 years agoCould you help me please with the formula, I'm a novice in this
- gyro858 years agoNew Member
Create new column
Previous Value = LOOKUPVALUE(Sheet1[Active Users],Sheet1[Date].[Date],Sheet1[Date].[Date]-30)
Change the -30 to however many days or parameterise it
- jracer0078 years ago
Helper IV
Can not with measure?
- v-chuncz-msft8 years ago
Community Support
To use measure, you could refer to DAX below.
Measure = LOOKUPVALUE ( Sheet1[Active Users], Sheet1[Date], MAX ( Sheet1[Date] ) - 30 )