Hi community,
Following is my sample dataset:
I want to create 2 columns Result1 & Result2.
Result1 = if the client has value 1 then True
Result1 = if the client has value 3 then True
I want result1 & result2 to look like following in the matrix:
Sample file: https://1drv.ms/u/s!Ag919_pO_UKrgS4axMQY6IFFpowi?e=gIEbYl
Thanks in advance.
Solved! Go to Solution.
@ExcelPBI Perhaps:
Result1 Measure =
VAR __Values = SELECTCOLUMNS('Table',"__Values",[Value])
RETURN
IF( 1 IN __Values,"TRUE","FALSE")
Result2 Measure =
VAR __Values = SELECTCOLUMNS('Table',"__Values",[Value])
RETURN
IF( 3 IN __Values,"TRUE","FALSE")
@ExcelPBI Perhaps:
Result1 Measure =
VAR __Values = SELECTCOLUMNS('Table',"__Values",[Value])
RETURN
IF( 1 IN __Values,"TRUE","FALSE")
Result2 Measure =
VAR __Values = SELECTCOLUMNS('Table',"__Values",[Value])
RETURN
IF( 3 IN __Values,"TRUE","FALSE")
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
177 | |
66 | |
66 | |
57 | |
55 |
User | Count |
---|---|
193 | |
103 | |
90 | |
80 | |
73 |