Forum Discussion
Anonymous
7 years agoNot applicable
Problem with segmentation / grouping up data
Hello, I am using powerpivot to analyse data for an internship. I have an normal dataset with one factstable with all the orders, one costumer table with the costumer names, country etc. and one ...
Ashish_Mathur
7 years agoSuper User
Hi,
Try this measure
=IF(HASONEVALUE(Data[Customer]),IF([Revenue]<250000,"Low",IF([Revenue]<=1000000,"Medium","High")),BLANK())
Hope this helps.