Jump to content

ChrisGoode

Members
  • Posts

    4
  • Joined

  • Last visited

ChrisGoode's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks for the reply. I don't think that will work. I probably wasn't very clear in my original question. I have a table report that I am doing some filtering on before the report comes up. I want the date to be selectable but I am trying to get it to default to tomorrow as the majority of the time that is the date that will be used...I can get today to populate and be the default but having a hard time getting tomorrow.
  2. I have a table search that requires a date input, the field is dispatches_date. I can get the field to auto populate with using [@cbTimestamp*] in the advanced section which gives me today's date. My question is, is there a way to get Tomorrow's date to default in that field instead of today. I have tried so many things, I think I am chasing my tail. Any help is greatly appreciated.
  3. That works. Thank you so much, and I learned something which makes it even better.
  4. Our database was created before formulas were allowed in tables. Due to relationships, table restrictions and being live, I would like to fix this without using formulas. I have a submit form that is creating a Work Order Number by concatenating the Equipment_VIN and Time Stamp. In the form the Equipment_VIN is chosen by drop drop down from an equipment table. The form works perfectly. When I change the Equipment_VIN to autocomplete so the VIN numbers are easier to find the element of the VIN is no longer pulled by the script. Anyone have an idea as to why this is happening? Here is the script I am running in the footer. The script points to an HTML block div that is called "won" for work order number. <SCRIPT LANGUAGE="JavaScript"> function concatenate() { var position1 = document.getElementById("InsertRecordEquipment_VIN").value; var position2 = '[@cbTimestamp]'; var allpositions = position1 +" "+ position2; document.getElementById("InsertRecordWork_Order_Number").value = allpositions; document.getElementById("won").innerHTML= "Work Order Number is: " + allpositions; } document.getElementById("Submit").onmouseover=concatenate; </SCRIPT>
×
×
  • Create New...