Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Jsbecker
Contributor
Contributor

Using Range values in set analysis

Hello Community, I need help with this set analysis. 

I need to get values between two different times. 

I put it in a set analysis without any lucky.

Can you help me, please?

HorarioJugada = {">= TIME(TIME('11:15','hh:mm') - ($(vMinutosAntesCierre)/(24*60)),'hh:mm') <= TIME('11:15','hh:mm')"}

 

Thanks a lot

Labels (2)
1 Solution

Accepted Solutions
sunny_talwar

May be this

HorarioJugada = {">=$(=Time(MakeTime(11, 15)-($(vMinutosAntesCierre)/(24*60)), 'hh:mm'))<=$(=Time(MakeTime(11, 15), 'hh:mm'))"}

View solution in original post

2 Replies
sunny_talwar

May be this

HorarioJugada = {">=$(=Time(MakeTime(11, 15)-($(vMinutosAntesCierre)/(24*60)), 'hh:mm'))<=$(=Time(MakeTime(11, 15), 'hh:mm'))"}
Jsbecker
Contributor
Contributor
Author

It works! Thank you very much.