Forum Discussion
Anonymous
4 years agoNot applicable
Pivot transformation
Hello I have the data: Field1 Field2 Field3 Field4 Attribute1 Attribute2 Attribute3 1 2 3 4 Yes 2 3 4 4 Yes Yes 3 4 5 4 Yes I want to tran...
Anonymous
4 years agoNot applicable
Hi Anonymous ,
Please refer to my pbix file to see if it helps you.
Create columns.
blank_1 =
CALCULATE (
COUNT ( 'Table'[Field1] ),
'Table'[Field2] > 2
&& 'Table'[Attribute1] = BLANK ()
)
_1yes =
VAR _count =
CALCULATE (
COUNT ( 'Table'[Field1] ),
FILTER ( 'Table', 'Table'[Field2] > 2 && 'Table'[Attribute1] = "Yes" )
)
RETURN
IF ( 'Table'[Attribute1] = "Yes", _count, BLANK () )
blank_2 =
CALCULATE (
COUNT ( 'Table'[Field1] ),
FILTER ( 'Table', 'Table'[Field2] > 2 && 'Table'[Attribute2] = BLANK () )
)
_2yes =
VAR _count =
CALCULATE (
COUNT ( 'Table'[Field1] ),
FILTER ( 'Table', 'Table'[Field2] > 2 && 'Table'[Attribute2] = "Yes" )
)
RETURN
IF ( 'Table'[Attribute2] = "Yes", _count, BLANK () )
blank_3 =
VAR count_ =
CALCULATE (
COUNT ( 'Table'[Field1] ),
FILTER ( 'Table', 'Table'[Field2] > 2 && 'Table'[Attribute3] = BLANK () )
)
RETURN
IF ( 'Table'[Attribute3] = BLANK (), count_, BLANK () )
_3yes =
VAR _count =
CALCULATE (
COUNT ( 'Table'[Field1] ),
FILTER ( 'Table', 'Table'[Field2] > 2 && 'Table'[Attribute3] = "Yes" )
)
RETURN
IF ( 'Table'[Attribute3] = "Yes", _count, BLANK () )
If I have misunderstood your meaning, please provide your desired output and your pbix without privacy information.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.