Forum Discussion
same measure in every pages
v-huizhn-msft thanks for the suggestion. However, my data is complicated. The reason why I do this measure is i have to use this measure into another measure. Below are my full measure for 1 table:
1. CurrentMonth = SUM('A'[Revenue])
2. PreviousMonth = CALCULATE('A'[CurrentMonth], PREVIOUSMONTH('A'[Date]))
3. LastYearMonth = CALCULATE('A'[CurrentMonth], SAMEPERIODLASTYEAR('A'[Date]))
4. CurrentMonth/PreviousMonth = 'A'[CurrentMonth] - 'A'[PreviousMonth]
5. CurrentMonth/LastYearMonth = 'A'[CurrentMonth] - 'A'[LastYearMonth]
As power bi doesnt allow me use the same measure name, so atm i using different measure name in every table (eg. A<CurrentMonth>, B<CurrentMonth>). What I hope to do is just have all measure are having the same name. Is there anyway to make it better?
thanks.
Hi CTan42,
Unfortunately, we are unable to use the same name for different measures. Usually, we can not recognize each measure's calculation if they have same name.
Best Regards,
Angelia