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.
Hi,
I am trying this as a calculated column:
=if(CALCULATE(COUNTROWS((Sales)),'Calendar'[Date]>=Sales[start],'Calendar'[Date]<=Sales[end],)>0,1,0)
but I get the subject error message. Sales[start] end [end] are also calculated columns.
Help is appreciated...
Solved! Go to Solution.
Rewrite your code to this:
=if(CALCULATE(COUNTROWS((Sales)),'Calendar'[Date]>=Sales[start],'Calendar'[Date]<=Sales[end])>0,1,0)
I only deleted the last comma in the CALCULATE function call.
Rewrite your code to this:
=if(CALCULATE(COUNTROWS((Sales)),'Calendar'[Date]>=Sales[start],'Calendar'[Date]<=Sales[end])>0,1,0)
I only deleted the last comma in the CALCULATE function call.
Good catch. I need better glasses.
Many thanks