Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi,
I have 2 columns from other tables of categories names and date.
Example:
| Table1 [Date] | Table2 [Categories names] |
| 1/1/2021 | Sport |
| 1/2/2021 | Sport |
| 1/3/2021 | News |
| 1/4/2021 | News |
| 1/5/2021 | Computers |
| Table1 [Date] | Table2 [Categories names] |
| 1/1/2021 | Sport |
| 1/3/2021 | News |
| 1/5/2021 | Computers |
Thanks for everyone!
Solved! Go to Solution.
Hi, @dolevh
You say that the two columns interact with each other, and I have a date column in Table2 by default.
Measure =
CALCULATE (
MIN ( Table2[Date] ),
FILTER (
ALL ( Table2 ),
Table2[Categories names] = MAX ( Table2[Categories names] )
)
)
If I don't understand correctly please correct me and tell me what the interrelationship between the two columns is like, thank you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more.
Hi, @dolevh
Measure =
IF (
CALCULATE (
MIN ( 'Table'[Date] ),
FILTER (
ALL ( 'Table' ),
'Table'[Categories name] = MAX ( 'Table'[Categories name] )
)
)
< DATE ( 2021, 5, 1 ),
BLANK (),
MIN ( 'Table'[Date] )
)
If there are other questions please start a new thread. Thank you!
Best Regards,
Charlotte Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @dolevh
You say that the two columns interact with each other, and I have a date column in Table2 by default.
Measure =
CALCULATE (
MIN ( Table2[Date] ),
FILTER (
ALL ( Table2 ),
Table2[Categories names] = MAX ( Table2[Categories names] )
)
)
If I don't understand correctly please correct me and tell me what the interrelationship between the two columns is like, thank you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more.
Thanks a lot, it's working!
I want to add a condition for example:
| Date | Categories name |
| 01/01/2021 | Sport |
| 01/02/2021 | Sport |
| 01/07/2021 | Sport |
| 01/08/2021 | Sport |
| 01/01/2021 | News |
| 01/02/2021 | News |
| 01/07/2021 | News |
| 01/05/2021 | Computers |
| 01/06/2021 | Computers |
| 01/07/2021 | Computers |
| 01/09/2021 | Food |
| 01/10/2021 | Food |
| 01/11/2021 | Food |
| Date | Categories name |
| 01/05/2021 | Computers |
| 01/09/2021 | Food |
Hi, @dolevh
Measure =
IF (
CALCULATE (
MIN ( 'Table'[Date] ),
FILTER (
ALL ( 'Table' ),
'Table'[Categories name] = MAX ( 'Table'[Categories name] )
)
)
< DATE ( 2021, 5, 1 ),
BLANK (),
MIN ( 'Table'[Date] )
)
If there are other questions please start a new thread. Thank you!
Best Regards,
Charlotte Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you!
@dolevh
Not sure if you have the Date and the Category columns are in one table already. Please try the following new table.
Table New =
ADDCOLUMNS(
VALUES('Table-06'[Categories names]),
"Date", CALCULATE( MIN('Table-06'[Date]))
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
It's still not working 😞
The columns from tables are different but there are interactions between them.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 59 | |
| 53 | |
| 41 | |
| 31 | |
| 31 |