Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 34 | |
| 33 | |
| 30 |