Suggestions and user input

Hi,

First Iโ€™m not english, sorry if my english is bad
Iโ€™m a new appsheet user and Iโ€™m trying to develop an app which allows you to enter what youโ€™ve done (an operation), the date, whoโ€™ve done it and the price.
But, all operations have a fixed price, and there is a last operation called โ€œOtherโ€ which has no fixed price (itโ€™s in a calc, letโ€™s say there is op1, op2, op3 with a value in euros and โ€œOtherโ€ with no value).
When you add an operation, the price is fixed (the formula is [Operation].[Price]). But, when you choose the operation โ€œOtherโ€, you canโ€™t manually enter a price and if you add the row you just have no price.
What I want is when you choose for example op1, it suggests you the price of op1 but you can still change it, and when you choose other, it suggests no price and you have to enter one (eventually it suggests 0, if necessary).

Baptiste

0 4 118
4 REPLIES 4

Steve
Platinum 4
Platinum 4

For the Price column, configure Editable? with the expression:

AND(
  ISNOTBLANK([Operation]),
  ([Operation] = "Other")
)

Hey, thanks for your answer. Actually, I just filled the โ€œInitial Valueโ€ with formula [Operation].[Price], I might have missed it earlier, donโ€™t know why.
Now Iโ€™ve a new problem, iโ€™m trying to just make a bot that creates a new row in a different data set, which computes the money gained each day, but I canโ€™t make a bot, I have an event of type schedule triggering each day and a process with only one step that add the row that I want, but when I try to create a bot I can choose my event and then I canโ€™t choose my process and canโ€™t create the one I want, and I donโ€™t know why.

Baptiste

NB : I missclicked the โ€œSystemโ€ button when I created one event and now I have this message if I ever click on it (I canโ€™t even delete it)

Error: this component failed to render. Please report to support with a screenshot of this error message so it can be fixed.

Error: Minified React error #130; visit https://reactjs.org/docs/error-decoder.html?invariant=130&args[]=undefined&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
(I cant copy everything bcs of all the links)

This is an internal bug. Please contact Support for help with it.

https://www.appsheet.com/Support/Contact

Just reported the bug to the support, but I still donโ€™t know what iโ€™m doing wrong with the bot. Iโ€™ll try to be more precise. I have a list of operations in a table, with the date and a price each time. I have also a table in which I would like to have, for each date, the sum of all the operationsโ€™ price, but I want this to be automatically done each day. So I tried to make an event that triggers every day at 3am, and a process with only one action which is a data action that add new rows, and set the date of this new row to TODAY() - 1, and the sum should be automatically computed (with a formula). But I canโ€™t create a bot with this event and process. I feel like I am missing smthg because when I try the action (without the bot and the process), I need to execute it from a row of the operation table, like it needs a row to execute, while it shouldnโ€™t.

Thank you for the help, hope youโ€™ll understand what I explained.
Baptiste

Top Labels in this Space