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 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Dear,
I need to SUM values from a table (Measure1) when the date is <= "2019-07-31".
If it is greater than "2019-08-01" I must add another measure (Measure2)
IF (@DATE <= '2019-07-31') THEN
BEGIN
SELECT SUM(VALUE1) FROM TABLA1
END
ELSE
BEGIN
SELECT SUM(VALUE2) FROM TABLA2
END
THANK A LOT
Solved! Go to Solution.
Hi @Joshua_ ,
You may create measure like DAX below.
Measure1 = IF(MAX(Table[DateKey])<=DATE(2019,7,31),SUM(Ventas[VALORA]),SUM(Detalle_Venta[MONTO]))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Joshua_ ,
You may create measure like DAX below.
Measure1 = IF(MAX(Table[DateKey])<=DATE(2019,7,31),SUM(Ventas[VALORA]),SUM(Detalle_Venta[MONTO]))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It Worked.
Thank Amy
Regards,
SOMETHING LIKE THAT
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 |
|---|---|
| 29 | |
| 28 | |
| 20 | |
| 20 | |
| 19 |
| User | Count |
|---|---|
| 35 | |
| 26 | |
| 20 | |
| 18 | |
| 17 |