Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 8 | |
| 8 |