Fraudie Posted June 1, 2007 Posted June 1, 2007 I have simple database for school which has products and clients and then transactions. I'm trying to perform a search by month and year. I have the year working fine but i want the pop-up menu for month to come up as the actual month names but then perform the find according to the corresponding month number (e.g. January will search for 1) Is there a way to have a custom value list which comes up with one thing but searches for another or will i have to make a new bunch of fields in the transaction table?
Ocean West Posted June 1, 2007 Posted June 1, 2007 Create a new field: Month_Number = Let( [ _month = "Dec" ; // or your monthfield _list = "Jan¶Feb¶Mar¶Apr¶May¶Jun¶Jul¶Aug¶Sep¶Oct¶Nov¶Dec" ] ; ValueCount( Middle( _list ; 1 ; Position( _list ; _month ; 1 ; 1 ) + Length( _month ) ) ) )
Fraudie Posted June 1, 2007 Author Posted June 1, 2007 Thanks for your reply. I fixed it myself after fiddling around for 15mins or so lol I made a new field in the transactions called month name which was then calculated from one of the date functions, MonthName(Transaction Date) or something. That made it so it came up with the month name rather than month number. Cheers for the quick reply anyway.
Recommended Posts
This topic is 6388 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now