Before contacting the support team please review the following sections.
In addition, a large volume of help and guidance is published by FleetWave® itself. Choose the HELP option from the menu, or click on any of the
icons displayed within the system.
Gets the value of two fields and adds them together. This can be used if you have lots of money/price boxes and want to total them up at the end.
(Note this will show as blue Text)
This will actually set another field to be the value of other money fields added together. This makes it easier for reporting purposes when you want to show the total amount.
If you want to record the interval for a special requirement. E.g You want to record the interval when a particular part is replaced.
The following will show at what mileage the part will need changing:
Also on screen you could go even further to make the mileage reading display in different colours as the current mileage reading gets closer to the change mileage.
If you want to display something on the vehicle screen to remind you the vehicle is getting old and near replacement you can have an expression to display a group of words.
IF(GCV("REG_DATE")<(Today()-730),"Vehicle at Least 2 Years Old"," ")
If the Registration Date is 2 or more years (730 days) from today then it will show vehicle is at least 2 years old on screen. If it isn't then nothing will show.
Here is an example of how you could populate a field with something based on what is entered on another field.
For example if you set the make of a vehicle to SCANIA, you could make it so it sets the vehicle type to be HGV automatically.
IF(GCV("MAKE")="SCANIA",SCV("NEW","HGV")," ")