Forum Discussion
Syndicate_Admin
4 years agoAdministrator
Consolidating Helper Column into Single Column with Nested Functions
I have one column that lists the Group Name Description if the Account is grouped, if the account is not grouped it returns a blank text value (not best practices but can't change the data source) ...
- 4 years ago
Use below formula in a custom column
= if [#"Group - Account Description"]="" then Text.From([Account])&"."&Text.From([Profit Center]) else [#"Group - Account Description"]
Syndicate_Admin
4 years agoAdministrator
101 would be Example
103 would be 100003.103
If Group Account Description is blank then return Account.Profit Center else return the value in Group Account Description
Vijay_A_Verma
4 years agoMost Valuable Professional
Use below formula in a custom column
= if [#"Group - Account Description"]="" then Text.From([Account])&"."&Text.From([Profit Center]) else [#"Group - Account Description"]