Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a table, with a snippet of it shown below.
I want the min/max columns to be added to another table. Does anyone know how I can write in DAX for the corresponding min/max value for each tagname to be added to the second table, i.e. for s011_tic11_23_pv, add the min and max values 0.5 and 2.5 in the 2nd table. The 2nd table has multiple repeats for each tagname so I want the min/max to be copied in for all of the repeats.
Solved! Go to Solution.
Hi @Anonymous ,
You can create two columns in table 2 like below:-
min = related('table1'[min])
max = related('table1'[max])
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Anonymous ,
You can create two columns in table 2 like below:-
min = related('table1'[min])
max = related('table1'[max])
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
User | Count |
---|---|
98 | |
76 | |
69 | |
53 | |
27 |