Forum Discussion
Max month in table with data
- 5 years ago
Hi, TravisGlanzer
Try measure as below:
Qtr_monthno = RANKX ( FILTER ( ALL ( 'BdgDate' ), BdgDate[Quarter] = MAX ( BdgDate[Quarter] ) ), CALCULATE ( MAX ( BdgDate[Date] ) ), , ASC ) //Rank of month in each quarterMax_Qtr.No = MAXX ( FILTER ( BdgDate, ( BdgDate[Quarter] = MAX ( BdgDate[Quarter] ) && [ReportBuilderEntCurrentDonorBase] <> BLANK () ) ), [Qtr_monthno] ) //max month where data exists for actualsResult = CALCULATE ( MAX ( 'VW_AGGR_DONOR_BASE'[Donor Base] ), FILTER ( ALL ( BdgDate ), ( BdgDate[Quarter] = MAX ( BdgDate[Quarter] ) ) && [Max_Qtr.No] = MAXX ( BdgDate, [Max_Qtr.No] ) ) )Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the response. Didn't get the +0 to work. here is the sample file. You can see I do not have a 2Q result for Current because the last result was in May which is the nmber I would like to represent for the quarter. https://vitalant-my.sharepoint.com/:u:/g/personal/009247_bloodsystems_org/EVfjm7Rl8nBLnCBGJkCZRdwBYNDoka3pBSki3yk0rIU18g?e=F9mNVe
Hope this works.
Hi, TravisGlanzer
It seems that I don’t have permission to access it.
Can you check the permission and share the link again?
Best Regards,
Community Support Team _ Eason
- TravisGlanzer5 years agoFrequent Visitor
Doesn't look like my company will let me give access to anyone with a link:
This site doesn't seem to allow me to just post the pbix?
- TravisGlanzer5 years agoFrequent Visitor
- TravisGlanzer5 years agoFrequent Visitor
- v-easonf-msft5 years ago
Community Support
Hi, TravisGlanzer
Uh,.... I can access it, but it seems that you uploaded a pbix file that is not related to the problem. I only saw a clustered column chart in the report.
Best Regards,
Community Support Team _ Eason- TravisGlanzer5 years agoFrequent Visitor
My appologies. It is the same DAX but a different graph. If you drill down to month you will see that the actual has results Jan through May but in the quarter view, i do not show any Q2 result. My hope was to show the max month (i.e. May for this month) in the quarter level rather than blank which is June.