This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Dear Power BI Representative,
I am reviewing Chapter 14 of The Definitive Guide to DAX and in the 'Understanding data lineage' section I was running the following code in DAX Studio as directed. However for some reason the SelectOnlyC2 variable DAX is not able to find C2 even though variable AddC2 is recognized if one sets the RETURN to AddC2 for testing. The error I received was 'Query (18,34) Column 'C2' cannot be found or may not be used in this expression.' Why is DAX unable to find C2 for the SelectOnlyC2 variable? Your insight into this matter is much appreciated.
Thank you.
DEFINE
MEASURE Sales[Sales Amount] =
SUMX ( Sales, Sales[Quantity] * Sales[Net Price] )
EVALUATE
VAR NonBlueColors =
FILTER (
ALL ( 'Product'[Color] ),
'Product'[Color] <> "Blue"
)
VAR AddC2 =
ADDCOLUMNS (
NonBlueColors,
"[C2]", 'Product'[Color]
)
VAR SelectOnlyC2 =
SELECTCOLUMNS( AddC2, "C2",[C2])/*issue with this formula, DAX is not able to find C2.*/
VAR Result = ADDCOLUMNS ( SelectOnlyC2, "Sales Amount",[Sales Amount] )
RETURN Result
ORDER BY [C2]
Solved! Go to Solution.
Hi @lt79_Pax
you probably need
VAR AddC2 =
ADDCOLUMNS ( NonBlueColors, "C2", 'Product'[Color] )
instead of
VAR AddC2 =
ADDCOLUMNS ( NonBlueColors, "[C2]", 'Product'[Color] )
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @lt79_Pax
you probably need
VAR AddC2 =
ADDCOLUMNS ( NonBlueColors, "C2", 'Product'[Color] )
instead of
VAR AddC2 =
ADDCOLUMNS ( NonBlueColors, "[C2]", 'Product'[Color] )
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 5 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 14 | |
| 8 | |
| 7 | |
| 6 | |
| 6 |