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.
Hello,
I need help with creating a DAX Formula. I have four columns in my table called "Transactions":
1. Date
2. Fund ID
3. Frequency
4. Dividends
And I need to write a formula that does the following:
Could someone please help me with this? I am new to DAX and am lost on whether I should use the Calculate formula, IF formula, etc.
Solved! Go to Solution.
@hawkeyes12 , let your measures be:
If this solves the problem, kindly mark my response as a solution.
Hi @hawkeyes12 , I like to break down my DAX into pieces to make it easier to write, read and understand. This is what you should write, assuming the dates start counting from today:
If this solves the problem, kindly mark my response as a solution.
Hi @ahmedoye this is very helpful! If the dates don't start counting from today and instead start counting from the most recent date in the [Date] column, how would this change the formula? For example, this calculation will be performed in mid-March and the source file will include data from 2/28/2019 to 2/29/2020. The first date that we would want included in the 30, 90 and 365 day calculation is 2/29/2020.
I am having a very hard time with the date functions so any guidance you may have is very appreciated!
@hawkeyes12 , let your measures be:
If this solves the problem, kindly mark my response as a solution.
You likely want to use a SWITCH statement. And you will likely want to calculate your value using a SUMX statement with a FILTER although you could also use CALCULATE with a FILTER statement. So either:
SUMX(FILTER('Table',....),[Dividends])
or
CALCULATE(SUM([Dividends]),FILTER(...))
Hi - thank you for the response. Could you please explain what you mean by a SWITCH Statement?
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 |
---|---|
10 | |
10 | |
10 | |
9 | |
7 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
10 |