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 cannot figure out how to sum column C from Table 1 based on the condition that column B values fit the interval (Column I and J)
Could anyone help me solve that problem? Everytime I try to either create a new column or a new measure, DAX does not allow me to use the variables I need to implement the maths.
Thank you in advance
Solved! Go to Solution.
@JMSNYC - Should be as a column:
Actual Revenue = SUMX(FILTER(RELATEDTABLE('DAILY REVENUES'),[Date Rev.]>=[Tender Start Date] && [Date Rev.]<=[Tender End Date]),[Revenue])
If that does not work please @ me
I did confirm this in the attached PBIX file below sig. Table (23), Table (23a), Table (23b)
@JMSNYC , Try a new column like this Tenders Table
sumx(filter(DailyRevenue, Tenders[TenderStartDate]<=DailyRevenue[DateRev]
&& Tenders[TenderEndtDate]>=DailyRevenue[DateRev] && DailyRevenue[CustomerUID] = Tenders[CustomerUID]),DailyRevenue[Revenue])
@JMSNYC - Should be as a column:
Actual Revenue = SUMX(FILTER(RELATEDTABLE('DAILY REVENUES'),[Date Rev.]>=[Tender Start Date] && [Date Rev.]<=[Tender End Date]),[Revenue])
If that does not work please @ me
I did confirm this in the attached PBIX file below sig. Table (23), Table (23a), Table (23b)
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 |
---|---|
105 | |
69 | |
49 | |
41 | |
34 |
User | Count |
---|---|
154 | |
112 | |
60 | |
54 | |
35 |