Forum Discussion
Dax
This is calculated column .
I want to use this calculation in measure .
But table name is not showing.
Can I know what changes to make in measure for this calculation. Please help me
6 Replies
- bcdobbsCommunity Champion
Just to rule out an easy solution try putting inverted commas round the table name, eg
'TableName'[Column Name]
also no space between the table and column section.
- AtchayaPHelper V
but still showing error
- bcdobbsCommunity Champion
What error is it giving?
- AtchayaPHelper V
Table name is not showing , I have used same calculation in calculated column , I didn't get any error but while using in measure , table name is not showing
- VahidDMSuper User
Hi AtchayaP
Put your conditions in IF statment to the MAX and then test it as a measure.
IF(MAX('TABLENAME'[Product Family])="XXX",....
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/- AtchayaPHelper V
But it is showing error as MIN function accepts a column reference as an argument...could you help me with this code