Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
I have 3 years data in excel, we are calculating values as per quarter in excel we can take a cell which was at end of the Quarter but in DAX how to take reference cell.
Example : Q1 2021 value was in N63 cell in excel we can easily take as reference and we can fix the value using $ symbol then the cell reference will not change even we drag the formula.
as per above request how to write DAX, can anyone suggest it?
Hii, Once Use the following DAX function
Quarter1Value =
VAR Column1Values = VALUES('YourTableName'[Column1])
VAR Quarter1Filter = CALCULATE(Column1Values, FILTER('YourTableName'[Date], 'YourTableName'[Date] >= STARTDATE('YourTableName'[Date], QUARTER, 1) AND 'YourTableName'[Date] <= ENDDATE('YourTableName'[Date], QUARTER, 1)))
RETURN
FIRST(Quarter1Filter)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
16 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
23 | |
11 | |
10 | |
10 | |
8 |