Forum Discussion
Delphia
5 years agoAdvocate II
Clustered column chart date limits (dynamic)
Hello everyone, I need your help with a Clustered column and line chart. The goal is to show the chart with the x-axis, where the last date = the date, where "sold" and/or "cost" data is a...
- 5 years ago
Hey Delphia ,
the axis will disappear when there is not data to show. So I would recommend to check in the [Profit %] measure if there is data in the other two measures:
Profit % = IF([Sold] = BLANK() && [Cost] = BLANK(), BLANK(), [the current Profit % code] )If you need any help please let me know.If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍Best regardsDenisBlog: WhatTheFact.biFollow me: twitter.com/DenSelimovic
selimovd
5 years agoMost Valuable Professional
Hey Delphia ,
the axis will disappear when there is not data to show. So I would recommend to check in the [Profit %] measure if there is data in the other two measures:
Profit % =
IF([Sold] = BLANK() && [Cost] = BLANK(), BLANK(), [the current Profit % code] )
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Delphia
5 years agoAdvocate II
Thank you, Denis, for this solution! It works perfectly!