Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi all
i write this expression and there is not any errors in this
vMotor_Paid = CALCULATE(SUM(Paid_excel[PAID_AMOUNT]),FILTER(Paid_excel[PAID_DATE]={[VpeDate]}))Here I create another variable of VpeDate and store date like this "12-03-2017" (mm-dd-yyyy)
now on KPI card when i drag this vMotor_Paid expression this shows an error
"Calculation error in measure 'Varaibles Table'[vMotor_Paid: DAX comaprison operations do not support
comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values "
try this syntax:
vMotor_Paid =
CALCULATE (
SUM ( Paid_excel[PAID_AMOUNT] ),
FILTER ( Paid_excel, Paid_excel[PAID_DATE] = { [VpeDate] } )
)
Hi when i try to add more filters this shows nothing i tried this
vMotor_Paid =
CALCULATE (
SUM ( Paid_excel[PAID_AMOUNT] ),
FILTER ( Paid_excel, Paid_excel[PAID_DATE] = { [VpeDate] } ),
FILTER(Premium_Excel,Premium_Excel[LOB] = "MOTOR"),
FILTER(Paid_excel,Paid_excel[Flag] = "Paid"))and in VpeDate i add date like this
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 2 | |
| 2 | |
| 2 |