The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have a base question where I would like to know why I cant 'qualify' the table name for the column [Value] that is created i the GENERATESERIES() measure. See the below example.
I find it confusing to only refer to [Value] and prefer to qualify it with the table name first.
//This DAX Works
Solved! Go to Solution.
Ah, thank you, I forgot that when used in a variable the table doenst actually 'materialize'. I confirmed, once 'materialized', I can qualify it in another calculated table:
// Easy enough to check...
// This gives you an error:
EVALUATE
CROSSJOIN(
GENERATESERIES(1, 10, 2),
GENERATESERIES(2, 10, 2)
)
// You can do this instead:
EVALUATE
CROSSJOIN(
GENERATESERIES(1, 10, 2),
SELECTCOLUMNS(
GENERATESERIES(2, 10, 2),
"Value2", [Value]
)
)
Best
D
Thank you, makes sense, I'll be keeping this in my back pocket.
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
12 | |
8 | |
8 |