Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hey everyone,
I'm trying to create a column that gets me the amount of phone calls since the last sale for each sales rep. I have a table with a Rep column and Date of Last Sale column. I'm having an issue trying to sum from my phone call table only if the Date of Call is after the Date of Last Sale. My thought was to create a measure using sumif and then a column in the Sales Rep table based off that measure. SUMIF(Date of Call,>Date of Last Call,Phone Call Count) would be my formula in excel but I need help going to DAX.
Solved! Go to Solution.
Generally the answer to SUMIF questions is CALCULATE. So, something like:
Measure = CALCULATE(SUM(Table[Column]),FILTER(...))
The FILTER essentially becomes the "IF" portion of your SUMIF.
Generally the answer to SUMIF questions is CALCULATE. So, something like:
Measure = CALCULATE(SUM(Table[Column]),FILTER(...))
The FILTER essentially becomes the "IF" portion of your SUMIF.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
36 | |
31 |
User | Count |
---|---|
87 | |
62 | |
61 | |
49 | |
45 |