Forum Discussion
Subtotal in a Row
- 8 years ago
Hi dennis1994,
Based on my test, you should be able to follow steps below to get the expected result.
1. Add new table with a single column like below to your model(make sure there is no any relationships between this table and the other tables).
2. Use the formula below to create a new measure.
Measure = VAR lable = MAX ( Table2[Label] ) RETURN IF ( lable = "Total", SUM ( Table1[Hours] ), CALCULATE ( SUM ( Table1[Hours] ), Table1[Label] = lable ) )3. Show 'Day' column, 'Lable' column from the new added table, and the measure on Table visual.
Here is the sample pbix file for your reference. :smileyhappy:
Regards
Hi dennis1994,
Based on my test, you should be able to follow steps below to get the expected result.
1. Add new table with a single column like below to your model(make sure there is no any relationships between this table and the other tables).
2. Use the formula below to create a new measure.
Measure =
VAR lable =
MAX ( Table2[Label] )
RETURN
IF (
lable = "Total",
SUM ( Table1[Hours] ),
CALCULATE ( SUM ( Table1[Hours] ), Table1[Label] = lable )
)
3. Show 'Day' column, 'Lable' column from the new added table, and the measure on Table visual.
Here is the sample pbix file for your reference. :smileyhappy:
Regards