Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table in which I would like to limit the number of a specific value :
I would like to limit the number of "Completed" to the last 2 events/records, per service.
I don't want the value "in Progress" to be limited.
Is there a way to do this ?
Thanks
best option is to flag the last 2 records during data load, can you post some sample data the best represents your actual data
Hi,
Simply try following
Count({<Staus = {'Completed'}} >} Mesure )
Thanks
Vikas
Hi Vikas,
Thanks for your reply but I'm not sure where you want me to add this expression ?
best option is to flag the last 2 records during data load, can you post some sample data the best represents your actual data
That's what I finally did, thanks.