Do you actually need the y's if the text information is being displayed? Are they in specific columns? You can create the string with
INFO: IIf([Married]=True,"Married") & IIf([Kids]=True," Kids")...)
in your recordsource. Then display the y's within the proper columns...
Thanks for the info! I ended up using a format command on the field
WEEKENDINGDT: IIf(([WEEKENDING]=0),"",Format(DateAdd("ww",[WEEKENDING],"12/31/89"),"yyyy/mm/dd")
and the Between...And statement
Between...
I have an Access DB which stores a Week Ending value as a number. I have created a report which needs the actual Week Ending Date which calculates fine (WeekEndingDt: IIf(([WEEKENDING]=0),"",DateAdd("ww",[WEEKENDING],"12/31/89")), however when I sort, I get...
On your subform properties choose Datasheet as the Default View and be sure that you have 'Yes' on Record Selectors. Use the following code on the Double Click event of the subform:
DoCmd.OpenForm "formname", acNormal, , filterfield = Me!filterfield
When you double click on the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.