Forum Discussion
Jaromac
4 years agoFrequent Visitor
Dax: Row to Column Transposition
Hi PowerBI users, I would like to find out whether is possible to transpose rows into columns against Phases field. I have already prepared a intial logic however I still missing to populate the ...
- 4 years ago
Hi, Jaromac
You don't need to use 'if' statement at all. To replace the blank, you just need to change the code as below:
Calculated columns:
Phase_1 = CALCULATE ( MAX ( Aggregate_view[Phase_done_progress] ), FILTER ( Aggregate_view, Aggregate_view[Phases] = "Phase 1" ) )Phase_2 = CALCULATE ( MAX ( Aggregate_view[Phase_done_progress] ), FILTER ( Aggregate_view, Aggregate_view[Phases] = "Phase 2" ) )Phase_3 = CALCULATE ( MAX ( Aggregate_view[Phase_done_progress] ), FILTER ( Aggregate_view, Aggregate_view[Phases] = "Phase 3" ) )Best Regards,
Community Support Team _ Eason
Jaromac
4 years agoFrequent Visitor
Yes 🙂 In the end I have a another column which reduce those numbers of records to have only one value but firstly I need to populate all blank records.
v-easonf-msft
Community Support
4 years agoHi, Jaromac
You don't need to use 'if' statement at all. To replace the blank, you just need to change the code as below:
Calculated columns:
Phase_1 =
CALCULATE (
MAX ( Aggregate_view[Phase_done_progress] ),
FILTER ( Aggregate_view, Aggregate_view[Phases] = "Phase 1" )
)
Phase_2 =
CALCULATE (
MAX ( Aggregate_view[Phase_done_progress] ),
FILTER ( Aggregate_view, Aggregate_view[Phases] = "Phase 2" )
)Phase_3 =
CALCULATE (
MAX ( Aggregate_view[Phase_done_progress] ),
FILTER ( Aggregate_view, Aggregate_view[Phases] = "Phase 3" )
)
Best Regards,
Community Support Team _ Eason