The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
I just have started with DAX, and I would create my first measure, but something is wrong.
I have a comment "cannot find name of column".
Could you explain to me why is that?
Solved! Go to Solution.
If you're writing a measure, then you can't refer to a raw column since it doesn't know which values from that column you want are, so you need to use some kind of aggregation.
Assuming there actually is a column named STATUS in the table 'EWW 2022', you can write
IF (
SELECTEDVALUE ( 'EWW 2022'[STATUS] ) = "REALIZACJA",
SUM ( 'EWW 2022'[TURNOVER] )
)
However, the error message associated with the common DAX mistake above is different.
Are you sure STATUS is actually a column on 'EWW 2022' and not a different table and that there aren't extra spaces or something similar in the name?
A really good place to start learning is this free video course:
If you're writing a measure, then you can't refer to a raw column since it doesn't know which values from that column you want are, so you need to use some kind of aggregation.
Assuming there actually is a column named STATUS in the table 'EWW 2022', you can write
IF (
SELECTEDVALUE ( 'EWW 2022'[STATUS] ) = "REALIZACJA",
SUM ( 'EWW 2022'[TURNOVER] )
)
However, the error message associated with the common DAX mistake above is different.
Are you sure STATUS is actually a column on 'EWW 2022' and not a different table and that there aren't extra spaces or something similar in the name?
Thank you so much for your help!
It was exactly what I needed 🙂
I wanted to start with a simple function, and it turned out that it isn't as easy as I thought
Were you trying to sum the turnover column only where the status of each row equaled REALIZACJA?
If so I think the following is what you want:
CALCULATE(
SUM ( 'EWW 2022'[TURNOVER] ),
'EWW 2022'[STATUS] = "REALIZACJA"
)
CALCULATE lets you add a filter in directly (amoungst other things!) rather than relying on a slicer etc.
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |