Forum Discussion
Time Measures as column headers in Matrix/Table
Hi thampton
If you could accept to transform the table structure or create a new table with a different structure from the original one, you could follow my steps below.
1. in Edit Queries,create a new blank query to copy your table
"New source"->Blank query, open "Advanced editor", enter
let
Source = Sheet6
in
Source
2.in "Query1" created above, split columns "sales", "profit" step by step
3.Then remove "sales.1" and "profit.1" columns
rename "sales.2" and "profit.2" columns as "sales", "profit"
select "sales", "orders" and "profit", unpivot these columns,
4. in the new created column "Value", check if its type is of number, if not, transform to number type.
or check each column to change to the proper type.
apply&close
5.create measures
current day = CALCULATE(SUM(Query1[Value]),FILTER(ALLEXCEPT(Query1,Query1[Attribute]),Query1[date]=TODAY())) yesterday = CALCULATE(SUM(Query1[Value]),FILTER(ALLEXCEPT(Query1,Query1[Attribute]),Query1[date]=TODAY()-1)) MTD = TOTALMTD(SUM(Query1[Value]),Query1[date])
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.