Basic filtering for slice data based on text

I am wanting to create some slices of my data based on a column [Wave].

I tried short cutting with CONTAINS([Wave], "10:10") but this gets expanded to a full date time stamp!?

SO i did a simple [Wave]="10:20 Start - Full Distance"

Now the data appears correct in the Expression Assistant "Test", but from the slice screen if I "Preview" the data it shows no columns!?

Solved Solved
0 2 131
1 ACCEPTED SOLUTION

How about AND(CONTAINS([Wave], "10:"),CONTAINS([Wave], ":10")) ?

View solution in original post

2 REPLIES 2

How about AND(CONTAINS([Wave], "10:"),CONTAINS([Wave], ":10")) ?

Thanks, I will test once back at the desk. It looks like a solution. I was
wondering if there was a means to stop 10:10 being interpreted as a date
time... seems odd
Top Labels in this Space