Forum Discussion
Not seeing 0 Count Months
bdehning
Try this measure:
Test Count of Total Gross Incurred +0 =
VAR __Max = MAX('CalendarTable'[Dates])
VAR __Count = COUNT(LossRun[Total Gross Incurred]) + 0
VAR __RT = COUNTROWS(FILTER(ALL('LossRun'), [InceptionYear] <= __Max))
VAR __Result = IF(__RT == 0, BLANK(), __Count)
RETURN
__Result
Or right click on the column assinged to the X-Axis and Choose "Show Item with no Data"
- bdehning2 years ago
Post Prodigy
Well, with your measure I get 0's again, but also 0's for months prior to InceptionYear, which I do not want. I do not want to see 0's if prior to InceptionYear. Ideas?
Both X-Axis items are text and show items with no data does nothing.
- Fowmy2 years ago
Super User
bdehning
Sharing a dummy Power BI file representing your scenario would be beneficial. You can save the Power BI file on Google Drive or any other cloud storage platform and provide the link here. Kindly ensure that permission is granted to open the file.- bdehning2 years ago
Post Prodigy
See what you can do. I have left Company C as the selection. They have Inception Date of 7/1/22 so only want to see 24 months including 0 months. I have filter for Rolling Months that restricts visual to 60 months if data is available. Company B and C meet that criteria. I need help in solving this.