Forum Discussion
Graph/Table showing more dates than needed on x-axis
- 2 years ago
Thanks again . I played around with your suggestion and eventually came up with the following:
6-Month Availability % =var _MinDate = TODAY()-184var _MaxDate = TODAY()RETURNIF(ENDOFMONTH(Issues[End Date.[Date]) <= _MinDate,BLANK(),IF(ENDOFMONTH(Issues[End Date].[Date]) > _MaxDate,BLANK(),'Issue Measures'[% Availability]))Its not the perfect solution as it only works on a report looking at the past 6 months, but it will do for now until we can come up with something more flexible.
Thanks again for your help,
David
I think the problem is on "% Availability" measure. Put some IF function that only do the "% Availability" if Downtime has value.
Something like this:
IF(NOT(ISBLANK( [Downtime])), 1-SUM(Issues[Impact on Uptime (%)], BLANK())
- dwightman21762 years agoFrequent Visitor
Thanks _AAndrade . That has almost solved it. Definitely a step forward. The issue I am left with now is where there is no downtime in a given month, that month is not presented in the visual, whereas I would like it to just show as being blank. As you can see in the attached - December is not presented on the visual
Thanks,
David
- _AAndrade2 years ago
Resident Rockstar
Replace BLANK() to 0 (zero). I think it could solve the problem