Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I want to sum the volume of deliveries that has date of deliveries creation(Data Cri ajust) lower than a certan day(Data base) AND has shipping date(Data formatada fat) higher than that that specific day.
I manage to get here:
Volume remessas vivas = sumx(filter(CV_BILLINGLOGGSB;CV_BILLINGLOGGSB[Data Cri ajust]<Planilha1[Data base]);CV_BILLINGLOGGSB[Volume Faturado])
Then I tryed to use AND, but got an error:
Volume remessas vivas = sumx(filter(CV_BILLINGLOGGSB;CV_BILLINGLOGGSB[Data Cri ajust]<Planilha1[Data base] and CV_BILLINGLOGGSB[Data formatada fat]>Planilha1[Data base]);CV_BILLINGLOGGSB[Volume Faturado])
Can I use the "filter" function inside the "sumx" for 2 or more parameters?
If yes, how?
Solved! Go to Solution.
The and operator is &&, not the word "and".
Proud to be a Super User!
The and operator is &&, not the word "and".
Proud to be a Super User!
Great! Thanks!
There is an AND() function that serves a similar purpose, but it is limited to two arguments. In general I recommend avoiding this function and using the && operator instead, since it allows essentially unlimited conditions to be strung together.
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.