
Rainer Grabowski
- Total activity 375
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 7
- Subscriptions 61
Activity overview
Latest activity by Rainer Grabowski-
Rainer Grabowski commented,
Depending on your setup there's perhaps a way to do this with IF-Conditions in the calculation field. Rainer
-
Rainer Grabowski commented,
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...
-
Rainer Grabowski commented,
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,...
-
Rainer Grabowski commented,
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 `@...
-
Rainer Grabowski commented,
Answer for the deleted question of John: Yes, that's possible.
-
Rainer Grabowski commented,
Hi Gert, does it show 0 if you in cat1 one of the 2 options is selected and in cat2 "Good" or "Ok"? If so, did you enter "Good" and ""Ok" exactly the same way as inthe categor options? If they ar...
-
Rainer Grabowski commented,
Hi Stuart, var X = @turnover; ((-4.5799*10^-11)*(X^2))+(0.0000044233*X)+36.322 Take care that you use the minus sign: - , not − Rainer
-
Rainer Grabowski commented,
Hi Troy, I assume, the phone number is in a phone field, not in a a text field. If so, you can do: var fon = @phone field.map(function (obj) { return obj.value}).join(); "61" + fon.substr(-9) R...
-
Rainer Grabowski commented,
You can only fetch data from the directly related app. If your employers' details app is related directly to booking request you should be able to get the data. Try @titleFieldName (without all of)...
-
Rainer Grabowski commented,
Hi David, you're trying to set an array (@all of ..) to upper case. But it's only possible wiith a string. @all of section.join(). toUpperCase() or @all of section.toString().toUpperCase() shou...