March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi everyone. I have a pretty basic need for a measure here. I have two tables. One has an index of location attributes. It includes an 'end date'. Another table is production data. So actions that get completed for each location and the date of those actions. I use a matrix to display the location, and the number of times certain actions took place in a certain date rage. I would also like to add a column for a count of actions that took place after the 'end date' listed for that location. Below is a mock up of what I am trying to accomplish. In excel I would do a countif(date@row,=index(match end date)...not correct i know, but you get the point i think. Thanks in advance for the help!
Solved! Go to Solution.
I made a measure for the 'end date' (End Date = 'Index'[End Date] and just added that to countrows measure:
Hey @mabCOLONEL,
You can create a measure for this that you can place in a matrix. This measure calculates per location the number of rows (actions) whose date is after the end date. And then takes the sum of that.
Past End =
SUMX (
KEEPFILTERS ( 'Index' ),
CALCULATE (
COUNTROWS ( 'Data Points' ),
'Data Points'[Date] > EARLIER ( 'Index'[End Date] )
)
)
I made a measure for the 'end date' (End Date = 'Index'[End Date] and just added that to countrows measure:
Hi @Barthel ,
I used that measure but did not get the anticipated result. I am not sure why these rows from my data are geting a value. You can see the 'end date' is clearly after the 'latest note' (action date) but the measure is still couting it as one.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
202 | |
137 | |
106 | |
70 | |
68 |