Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi guys,
I wan't to create the last column 'extracolumn' by creating a measure using DAX. The column is a copy of name when the boolean value is true grouped by someidentification.
Help is appreciated!
id someidentification boolean name extracolumn
1 100 true test1 test1
2 100 false test2 test1
3 100 false test3 test1
4 200 true test4 test4
5 200 false test5 test4
Solved! Go to Solution.
Hey @Anonymous ,
Give this a try:
extracolumn =
VAR some = 'Table'[someidentification ]
RETURN
LOOKUPVALUE (
'Table'[name],
'Table'[boolean], "TRUE",
'Table'[someidentification ], some
)
Proud to be a Super User!
Hey @Anonymous ,
Give this a try:
extracolumn =
VAR some = 'Table'[someidentification ]
RETURN
LOOKUPVALUE (
'Table'[name],
'Table'[boolean], "TRUE",
'Table'[someidentification ], some
)
Proud to be a Super User!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
23 | |
21 | |
19 | |
13 | |
12 |
User | Count |
---|---|
41 | |
31 | |
25 | |
23 | |
23 |