Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a list box and it contains shift times But here I don't want to show all the shifts.
I want to display only particular times like 6:30:00 AM, 4:30:00 PM, 10:30:00 PM
I have tried with combination of pick and match.
=Time(Pick(Match([login time],'6:30','16:30','22:30'),'6:30','16:30','22:30'),'hh:mm:ss TT')
but it is not working.
any suggestions will be appreciated.
Thanks in advance!!!
Hi Antony,
Try:
=Aggr(if(Match([login time],'6:30','16:30','22:30'),Time([login time])),[login time])
as the expression in a listbox.
Cheers
Andrew
don't use Pick match here, I know your intention. Should be this?
If(Match([login time], '6:30','16:30','22:30'), [login time])
Hi Antony,
try to use calculate Dimension in List box As Follow:
=If(WildMatch([login time],'6:30:00','16:30:00','22:30:00'),[login time])
Thanks,
Arvind Patil
Still it is not showing anything I have tried the same as you suggested.
PFA for your reference!!
Looks like showing?
Or this?
=If(Match([login time], '6:30','16:30','22:30'), TimeStamp([login time]))
No it is not showing anything.
I just opened your application? Check my replies with screenshots.
Both expressions I have tried but it is still not showing anything.
what's wrong with this??
Can you do it in my application which shared in the below.
May be share your image, Where it is not working for you