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
I've got data that gets produced on the first of the month and i need to create a boolean column based on if a particular id in this month was also in the data from last month.
how do i go about that?
Solved! Go to Solution.
Assuming you have a Table1 with all the historical and latest data in there, and column name is ID.
COUNTIF for Duplicate IDs =
VAR __ID = Table1[ID]
RETURN
COUNTROWS(
FILTER(
ALL(Table1),
__ID = Table1[ID]
)
)
Hope this is what you are looking for.
ended up using this in the end as i needed the id and extra criteria:
Hi @jonespossibly ,
Glad your problem is solved, can you accept the correct answer as solution, so that other users with similar problems to yours can find the solution faster, thanks in advance!
Hope it helps,
Community Support Team _ Caitlyn
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jonespossibly ,
Glad your problem is solved, can you accept the correct answer as solution, so that other users with similar problems to yours can find the solution faster, thanks in advance!
Hope it helps,
Community Support Team _ Caitlyn
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
ended up using this in the end as i needed the id and extra criteria:
Assuming you have a Table1 with all the historical and latest data in there, and column name is ID.
COUNTIF for Duplicate IDs =
VAR __ID = Table1[ID]
RETURN
COUNTROWS(
FILTER(
ALL(Table1),
__ID = Table1[ID]
)
)
Hope this is what you are looking for.
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 |