Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |