Forum Discussion
anupambit1797
May 09, 2025Steel Contributor
Data extraction from Pivot
Dear Experts, Greetings! I have a data like below(Worksheet attached too):- Column A(having rntis), B (having slots) and C having the transmission(DL_1_x) Out of this , fo...
- May 12, 2025
This is what I got from the Excel formula
= PIVOTBY(Rnti, DCI_Slot, SIGN(ISTEXT(DCI_Info)), PERCENTOF,,0,,0,,,1)
with a bit of conditional formatting
SergeiBaklan
May 10, 2025MVP
With adding data to data model we may add couple of measures
Count:=COUNTROWS( Table1 )
Mark:=VAR data =
ADDCOLUMNS (
Table1,
"count", CALCULATE ( COUNTA ( Table1[DCI Info DCI Format] ) )
)
VAR maxInRow =
CALCULATE (
MAXX ( VALUES ( Table1[DCI Info Slot] ), [Count] ),
ALLEXCEPT ( Table1, Table1[Rnti] )
)
RETURN
IF ( [Count] < 0.7 * maxInRow, "x", "" )
PivotTable with latest shows