Forum Discussion
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 Type", "CyLy", each If(List.Max(#"Changed Type"[txn_dte])=[txn_dte],"CY","LY"))
Thanks
Z
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
4 Replies
- VasTgMemorable Member
- zibsterHelper III
Please see below
- VasTgMemorable 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