Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible to change the colour of a point depending on a field?
I wanted to the dot to be Blue if Type=Dealer and Red if Type=Distributor. Is that possible?
Use this as color expression by Measure
If(Type='Dealer', Blue(), If(Type='Distributor', Red()))
Or
Pick(Match(Type, 'Dealer', 'Distributor'), Blue(), Red())
Use this as color expression by Measure
If(Type='Dealer', Blue(), If(Type='Distributor', Red()))
Or
Pick(Match(Type, 'Dealer', 'Distributor'), Blue(), Red())