Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi.
I have the following formula and its working.
CALCULATE([Total_Quantity];Fact_Forecast_Received[Type]=1;Fact_Forecast_Received[Current date]="2016-02-01")
Will now use selection box to select two dates = Current date and then use the min and max function to create two
columns. One with the max value selected and one with min value selected.
I have tried to use min and max like below with now success.
CR_min = min(Fact_Forecast_Received[Current date])
CALCULATE([Total_Quantity];Fact_Forecast_Received[Type]=1;Fact_Forecast_Received[Current date]=[CR_min])
Solved! Go to Solution.
You probably received the following message: "A CALCULATE function was used in a TRUE/FALSE expression as a table filter. This is not allowed".
Note that
CALCULATE( someExpression ; Table[Column] = someConstant )
is a shortcut for
CALCULATE( someExpression ; FILTER( ALL(Table[Column]) ; [Column] = someConstant ) )
However, if you use a measure to filter your data, you need to write the full filter expression:
FILTER( ALL(Fact_Forecast_Received[Current date]); [Current date]=[CR_min] )
You probably received the following message: "A CALCULATE function was used in a TRUE/FALSE expression as a table filter. This is not allowed".
Note that
CALCULATE( someExpression ; Table[Column] = someConstant )
is a shortcut for
CALCULATE( someExpression ; FILTER( ALL(Table[Column]) ; [Column] = someConstant ) )
However, if you use a measure to filter your data, you need to write the full filter expression:
FILTER( ALL(Fact_Forecast_Received[Current date]); [Current date]=[CR_min] )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
116 | |
82 | |
47 | |
42 | |
28 |
User | Count |
---|---|
184 | |
80 | |
72 | |
48 | |
45 |