Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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 (3)
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.