Forum Discussion
Anonymous
6 years agoNot applicable
New column conditional
Hi all, I want to a new column with Profile Total only when Product Type = Profile, and GB Total only when Product Type = Storage. Does anyone know how I would do this in the context of the table bel...
- 6 years agoProfile Total = IF([Product Type] = "Profile",[Quantity] * 1000,BLANK())
GB Total = IF([Product Type] = "Storage",[Quantity],BLANK())
Greg_Deckler
6 years agoCommunity Champion
Profile Total = IF([Product Type] = "Profile",[Quantity] * 1000,BLANK())
GB Total = IF([Product Type] = "Storage",[Quantity],BLANK())
GB Total = IF([Product Type] = "Storage",[Quantity],BLANK())