Forum Discussion
zibster
6 years agoHelper III
New Column MAX
Hi, I am trying to add a column that would identifie Max date place "CY" if the date = to max and place "CY" for others, here is my short code that i get error on. = Table.AddColumn(#"Changed Ty...
- 6 years ago
Add a custom column as below.
= if [Txn_dte] = List.Max(#"Changed Type"[Txn_dte]) then "CY" else "LY"Edit: Remember to append previous step name to the column. In my case, "Changed Type" is the previous step and i am referring the date column as List.Max(#"Changed Type"[Txn_dte]) instead of List.Max([Txn_dte])
If it helps, mark it as a solution
Kudos are nice too
VasTg
6 years agoMemorable Member
Add a custom column as below.
= if [Txn_dte] = List.Max(#"Changed Type"[Txn_dte]) then "CY" else "LY"
Edit: Remember to append previous step name to the column. In my case, "Changed Type" is the previous step and i am referring the date column as List.Max(#"Changed Type"[Txn_dte]) instead of List.Max([Txn_dte])
If it helps, mark it as a solution
Kudos are nice too