Forum Discussion
Anonymous
4 years agoNot applicable
passing date slicer value in calculated column
Requirement: Start of Period and End of Period are based on user selection Eg: Q3 2021 ( start of period: 1/7/2021 & End of Period 30/9/2021) I have to create calculated columns as below ...
halfglassdarkly
Responsive Resident
4 years agoTry creating these as measures instead of calculated columns. Calculated columns aren't going to inherit filter context from your slicers via your measures.
- Anonymous4 years agoNot applicable
I cannot use column names in my measure right?
Age of Pending Claims = IF(TrusteeClaimsList_Received[LeadLagReceivedDate] <> BLANK()
&& ISBLANK(TrusteeClaimsList_Received[LeadLagDecisionEndDate]),
DATEDIFF(TrusteeClaimsList_Received[LeadLagReceivedDate],[End of Period],DAY),BLANK())
Can you please show me?
TrusteeClaimsList_Received[LeadLagReceivedDate] this is a column from table
How can I use this in Measure ?