Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Showing end of quarter for totals and whole quarter for transactions

So I have 2 tables, one with totals of each month and one with the transactions of each month:

 

Totals

 

QuarterMonthCompanyTotal
Q1JanuaryUber5000000
Q1FebruaryUber8000000
Q1MarchUber1500000

 

Transactions

 

QuarterMonthCompanyTotal
Q1JanuaryUber600
Q1FebruaryUber150000
Q1MarchUber1500

 

The tables are linked by a dimdate table and by another table with a Company list.

 

I have a dashboard with a few graphs and tables that use the "SWITCH" formula, so that the person can switch between all metrics in the same page . When displaying Totals, I only want to show the end of the quarter month, so March, but for Transactions I want to show all the transactions of Q1.

 

Is there a way to do that?

 

I really would appreciate it, thank you

Thanks

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Assuming you are using date table, data for the last month of selected period

 


New measure =
var _max = maxx(allselected(Date),Date[Date])
return
calculate(sum(Table[Value]), filter('Date' , eomonth('Date'[Date],0) = eomonth(_max, 0)))

 

if there are more than one qtr then use allexcept('Date','Date'[Qtr Year])

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , Assuming you are using date table, data for the last month of selected period

 


New measure =
var _max = maxx(allselected(Date),Date[Date])
return
calculate(sum(Table[Value]), filter('Date' , eomonth('Date'[Date],0) = eomonth(_max, 0)))

 

if there are more than one qtr then use allexcept('Date','Date'[Qtr Year])

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.