Forum Discussion
ReadTheIron
Helper III
4 years agoCreating text column with values from two related tables
I'm trying to create a text column displaying information from two related tables: Asset List AssetFull Latest Failure Asset1 1/2/2021 Asset2 3/6/2021 Asset3 4/10/2021 and ...
- Anonymous4 years ago
Hi ReadTheIron ,
Here are the steps you can follow:
1. Create calculated column.
Date = VAR _1=CALCULATE(MAX('Daily Reports'[Asset ID]),FILTER(ALL('Daily Reports'),'Daily Reports'[AssetFull]=EARLIER('Asset List'[AssetFull]))) return _1&":"&[Latest Failure]2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
amitchandak
Super User
4 years agoReadTheIron , Filter create a table or filter in measure or column?
related can not be used to bring data from many side
what output you need ?
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
- ReadTheIron4 years ago
Helper III
This is the output I need:
Asset List AssetFull Latest Failure IDDate Asset1 1/2/2021 1: 1/2/21 Asset2 3/6/2021 2: 3/6/21 Asset3 4/10/2021 3: 4/10/21 Thanks for the video links; I'm reviewing them now.