Forum Discussion
Anonymous
4 years agoNot applicable
Calculated Column
Hey all, I've got a column containing e-mail adresses. I need to categorize this into three groups: An e-mail containing the string "unknown" should be categorized as "unknown" An empty cell sho...
- 4 years ago
Anonymous
Try
Type E-mail = SWITCH ( TRUE (), CONTAINSSTRING ( 'Data'[e-mail], "*onbekend*" ), "unknown", 'Data'[e-mail] = BLANK (), "unknown", CONTAINSSTRING ( 'Data'[e-mail], "*jnj*" ), "business", "private" )
Jasonk-WP43
4 years agoNew Member
I have an Excel sheet with customer order details, I would like to calculate the following:
- Number of registered customers since starting the online store (Just the number of customers to date)
- Top cities or areas within the city that ordered
Total Unit Sales and Total Revenue
How can I achieve this
Thanks in advance