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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I'm stuck trying to figure out the proper DAX measure to group all leads and applications based on the Fiscal Year. My data table consists of four columns and would like to condense that down to three columns where I can see the total applications and leads for each fiscal year.
As you can see from my table below, there are two rows that don't have any applications, which correlates with a (Blank) application round. How can I create a measure that combines all leads and applications for each fiscal year?
For reference,
FY-2019 = Round 1
FY-2020 = Round 2
DataTable:
Fiscal Year | Leads | Applications | Application Round |
FY-2019 | 795 | (Blank) | |
FY-2020 | 126 | (Blank) | |
FY-2019 | 81 | 81 | Round 1 |
FY-2019 | 3 | 3 | Round 1 |
FY-2020 | 4 | 4 | Round 2 |
FY-2020 | 35 | 35 | Round 2 |
FY-2020 | 35 | 35 | Round 2 |
What I'm trying to achieve:
Fiscal Year | Leads | Applications |
FY-2019 | 879 | 84 |
FY-2020 | 165 | 39 |
Solved! Go to Solution.
if you create a matrix and use sum as aggregation lead and application it should work. Also in table, if aggregation is used it should work.
User | Count |
---|---|
98 | |
76 | |
69 | |
53 | |
27 |