Forum Discussion
Dynamic text value showing past few weeks
- 7 years ago
Hi BBIUser,
You could create the calculated column with the formula 1 and create measure with formula 2.
1. V_Weeks = LEFT('Table1'[Week-Year],2) 2. Measure = "Past"& MAX('Table1'[V_Weeks])-MIN('Table1'[V_Weeks])&"weeks"Here is the output.
If you still need help, please share some data sample and your desired output so that we could help further on it.
Best Regards,
Cherry
You can use formula like
V_Weeks=Left(Week-Year)
V_Diff=max(V_Week)-main(V_Week)
- BBIUser7 years ago
Helper IV
Thanks for the reply Anonymous. Having trouble with these expressions.
Is V_Weeks a calculated Column and V_Diff a calculated Measure?
- v-piga-msft7 years ago
Resident Rockstar
Hi BBIUser,
You could create the calculated column with the formula 1 and create measure with formula 2.
1. V_Weeks = LEFT('Table1'[Week-Year],2) 2. Measure = "Past"& MAX('Table1'[V_Weeks])-MIN('Table1'[V_Weeks])&"weeks"Here is the output.
If you still need help, please share some data sample and your desired output so that we could help further on it.
Best Regards,
Cherry
- BBIUser7 years ago
Helper IV
Neat. It worked well. Thanks for the Solution v-piga-msft.