Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello, Power BI community, need some help. I have two tables :
Table1 and Table2 both with fields ID (Unique in each table) and Date (date format).
Need to count how many IDs from Table2 are in Table1 with Table1.Date < '1/1/2019'
Any help is greatly appreciated!!
Solved! Go to Solution.
Hi @MISgirlNY
Try this measure in a card visual:
Measure = COUNTROWS ( INTERSECT ( CALCULATETABLE ( DISTINCT ( Table1[ID] ), Table1[Date] < DATE ( 2019, 1, 1 ) ), DISTINCT ( Table2[ID] ) ) )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Hi @MISgirlNY ,
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Date less than and in table 2 = Calculate(Count(T1[ID]) , FILTER(T1,T1[ID]=LOOKUPVALUE(T2[ID],T2[ID],T1[ID] ) && T1[Date]<Date(2019,1,3) ))
Proud to be a Super User!
Hi @MISgirlNY
Try this measure in a card visual:
Measure = COUNTROWS ( INTERSECT ( CALCULATETABLE ( DISTINCT ( Table1[ID] ), Table1[Date] < DATE ( 2019, 1, 1 ) ), DISTINCT ( Table2[ID] ) ) )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Thank you! Good idea! I've done it differently, linked two tables by ID. But I like INTERSECT better!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
83 | |
78 | |
54 | |
39 | |
35 |
User | Count |
---|---|
98 | |
80 | |
50 | |
48 | |
48 |