Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set analysis

i am using if condition to display field on basis of reload time as if(time(reloadtime()>='  xyx' and time(relaodtime())=<'abc' and date(reloadtime())=date(today()),concat(field)) . but more than 2 and condition is not working. is there any way to display field on basis of above reload time.

8 Replies
tresesco
MVP
MVP

Without going to alternative. I can tell you that there is no such restriction in use of number of ANDs. If placed properly, it should work fine.

try like:

If( Time(ReloadTime())>=' xyz' AND Time(ReloadTime())<'abc' AND Date(ReloadTime())=Date(Today()) , Concat(field))

Not applicable
Author

Hi Piyush,

Try this if(time(reloadtime()>='  xyx', if(time(relaodtime())=<'abc',if(date(reloadtime())=date(today()),concat(field)))))

What I mean is..try putting it in loops,multiple AND conditions might not work in your case.

Hope this Helps,

Please get back to me with your result,if possible share your qvw.

Thanks,

Rochelle

Not applicable
Author

hi, try like this

if(time((reloadtime()>='  xyx') and( time(relaodtime())=<'abc') and (date(reloadtime()))=date(today()),concat(field))

wrap each AND in extra parentheses.

Not applicable
Author

thanks for your suggestion but still its not working.

Not applicable
Author

thanx john, i have tried the above option but still its not working.

Not applicable
Author

hi, treseco

i hav tried but its not working


tresesco
MVP
MVP

Can you please share your sample app?

Not applicable
Author

means a problem in calculation instead of the syntax.

join tresesco, lay out the project