No exaggeration intended, but you have the best teaching methodology when it comes to break down such a broad subject as programming is. For instance, with the all the color coding and comparisons with similar functions. And don't misunderstand me, there are really good tutorials out there for using APPSHEET, but yours are hands down the best my friend. Congratulations, and thanks a lot. You really should have more subscribers.
@appify2 жыл бұрын
Thank you so much for the kind words!
@TESTEAPPSHEET Жыл бұрын
Good morning friend... help me when you can. I managed to specify the delivery date of the service. But the customer, a car rental company, has more than one car in the shop. How to bring, by registration, the date of that car. Because what I select is to bring everything related to the client closer. I have tried all sorts of ways to no avail. Could you help me one more time? a customer. two cars. two different dates. I want to select the license plate of the car and the date corresponding to that plate appears
@ImadAli12 жыл бұрын
Great explanation!
@appify2 жыл бұрын
Glad you think so!
@highridgehydro43362 жыл бұрын
Great explanation, I tried using the select function for trying to pull a price for a certain product to automatically fill in when chosen in a form. I received this error message "The expression is valid but its result type 'List' is not one of the expected types: Number" Any advice on how to make this work?
@appify2 жыл бұрын
Select() will always return a 'List' even if it is one item. If you know the result will always be a single item just wrap the select function in any(). Ie. Any(select())