
Rainer Grabowski
- Total activity 375
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 7
- Subscriptions 61
Comments
Recent activity by Rainer Grabowski-
Depending on your setup there's perhaps a way to do this with IF-Conditions in the calculation field. Rainer
-
Hi John, do you want that calculation field in App A and it should get all related items from App B wiith "Category1"? This should help to show the number of items with category 1 in App B: v...
-
Hi Brock, perhaps one of the other fields (you get with @All of ...) is empty in one item. If you have a null-value in one item you'll get problems with the mapping of the arrays. There are perhap...
-
Hi Maria, example you have a date field named "Start" with the date 1/16/2016. In the calculation field you have to enter: moment(@Start).subtract(80,"days").toDate() The result is 10/28/2015,...
-
Hi Maria, if you have your dates (12/15/15 or 1/5/16) in date fields you can use this in a calculation field: moment(@YourDateField).add(80,"days").toDate() respectively subtract(80,"days") R...
-
Hello Stuart, open an item in the app and copy the url except the number (= unique item ID) at the end. Then paste the url into the additional calculation field (e.g. named "itemURL") and add `@...
-
Answer for the deleted question of John: Yes, that's possible.
-
Hi Stuart, the text list you've got in the calculation field can be made clickable (without webhooks and API). Just let the calculation add the URLs of the listed items. You would need an additio...
-
Hello Francisco, Not totally clear. If there is only one item "Exchange Rate" related to a client item and if the fields Exchange Rate and Contract value are number fields you can do in the calcul...
-
Hi Nicolas, you've to "tell" the calcultion what should happen if the phone field is empty by defining an IF-Condition: var phone = @Phone var phone1 = phone != null ? phone.map(function(obj){...