So I have 2 tables, one with totals of each month and one with the transactions of each month:
Totals
Quarter | Month | Company | Total |
Q1 | January | Uber | 5000000 |
Q1 | February | Uber | 8000000 |
Q1 | March | Uber | 1500000 |
Transactions
Quarter | Month | Company | Total |
Q1 | January | Uber | 600 |
Q1 | February | Uber | 150000 |
Q1 | March | Uber | 1500 |
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
Solved! Go to Solution.
@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])
@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])
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
376 | |
100 | |
64 | |
55 | |
43 |
User | Count |
---|---|
369 | |
113 | |
77 | |
65 | |
53 |