Forum Discussion
Anonymous
6 years agoNot applicable
Line Graph to start with zero at the beginning
Hello All, I need some help on this. I have a treemap that displays all the system in my organization with their yearly score. Then i have a corresponding line graph that displays the monthly bro...
- 6 years ago
Hi Anonymous ,
create a measure and check if system has only one value.
https://docs.microsoft.com/en-us/dax/hasonevalue-function-dax
Measure =IF(HASONEVALUE(Table[system]), SUM(Table[value]), BLANK())Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
mwegener
6 years agoMost Valuable Professional
Hi Anonymous ,
create a measure and check if system has only one value.
https://docs.microsoft.com/en-us/dax/hasonevalue-function-dax
Measure =IF(HASONEVALUE(Table[system]),
SUM(Table[value]),
BLANK())Regards,
Marcus
Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
- Anonymous6 years agoNot applicable
Thank you so much sir, you solved my biggest issue. Awedome job