Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to set up a button that select the year to (and current month) day based on today()
I have tried for my Month (VisitMth) calendar
Field
VisitMth
Search String
=Month (today()
This works fine and selects the current month
But how can I get a year to date total
Field
VisitMth
Search String
='<=3'
This works. It returns Jan Feb and Mar
But if I combine the two
= ' <= Month (today()'
it does not work
I'm sure there is a simple solution
Thanks
in my month field this works
='<=' & num(Month(Today()))
I also add a second select in field for year
=year(Today())
try the difference in a textbox between
num(Month(Today())) --> 3
Month(Today()) --> mar
if you want select date from start of the year to today
button
action
select in field
yourdatefield
='<=' & Today() & '>=' & YearStart(Today())
How can you post an image as you have done above????
I'm sure I use to be able to copy and paste
Or to select Jan Feb and Mar on this app
Thanks Massimo
What I want to do is select Jan Feb and Mar as shown above
I have tried
='<=' & Today() & '>=' & Month (Today())
This selected all 12 months
and thsi
='<=' & Month (Today())
This did not select anything
='<=' & Month (Today())
and neither worked
Thanks Massimo
What I want to do is select Jan Feb and Mar for month (date) only
ie The list box for Month (Call_Date)
I have tried
='<=' & Today() & '>=' & Month (Today())
This selected all 12 months
and thsi
='<=' & Month (Today())
This did not select anything
='<=' & Month (Today())
and neither worked
in my month field this works
='<=' & num(Month(Today()))
I also add a second select in field for year
=year(Today())
try the difference in a textbox between
num(Month(Today())) --> 3
Month(Today()) --> mar
Thanks It works
And for multi selection
Say Month
(Jan | Feb | Apr )
or Year
(2012 | 2013 | 2014 )