Forum Discussion
Naveen29
Helper II
4 years agoDAX help
I would like to display the data in the matrix table as follows. The measure values should display the YTD vs PYTD for country level, and loc wise it should be only YTD value. How to achive this?...
Syndicate_Admin
Administrator
4 years agothis is fine. How to show only YTD in the values
v-easonf-msft
Community Support
4 years agoHi, Naveen29
If you want to display the YTD vs PYTD for country level and YTD value for loc wise, you can create measure as blow to replace the value:
Measure1 =
IF ( ISFILTERED ( Table1[loc] ), [YTD], [YTD] & "VS" & [PYTD] )
Best Regards,
Community Support Team _ Eason
- Naveen294 years ago
Helper II
v-easonf-msft I tried this DAX even though it is giving or considering only one measure in the matrix table column.
- v-easonf-msft4 years ago
Community Support
Hi, Naveen29
Can you share your pbix file (without sensitive data) and related formulas you used?
Best Regards,
Community Support Team _ Eason