Skip to main content
Forum
Privacy
Contact
How to enable Javascript
Sign Up
Log in
Welcome to the Ninox community
Search all topics or
ask a question
Learn and share
Get help
Service status
Plugin apps
Documentation
Setup
Databases
Automation
My account
Administration
Solutions
Webinars
Overview
Profile
RoSoft_Steven
RoSoft_Steven.1
Ninox partner
Belgium
www.rosoft.be
Follow
Joined
Sun Sep 30 17:18:00 UTC 2018
1621
posts
226
likes received
5
followers
Badges
Latest Posts
Re: Need help organizing some information
@BuffaloTony What if you use text(color(loop2.Position)) ?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: I need to iterate a json object.
@Sotirios Zormpas Yes, correct.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Learn and share
Reported - view
Re: I need to iterate a json object.
You can also use this code to get a list of your Json: let myobject := { myObject: { paul: 10, jack: 20, bob: 30 } }; for name, value in myobject.myObject do name + ":…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
3
Learn and share
Reported - view
Re: Compose not send e-mail with attachments
@Mel Charles 🫶
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Bulk edit yes/no
True, A Yes/No field has 3 states.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Help with Google Charts in Ninox
I observed a strange behavior also with me. When opening the form, the chart was not visible. When closing and reopening the form the chart was shown. I do not know what causes this strange behavior.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Help with Google Charts in Ninox
At first sight, you are missing a comma after variabele 5. Also, i would use single quotes instead of double double quotes. You might also wrap your code in <htlm> ... </html> tags. Hope this helps.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Help with Google Charts in Ninox
As you can see in this example the data should be numbers. Can you upload a example database with dummy data if you don't get it to work?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Thoroughly delete image elements with code
And for the code and an example database here. 😉
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
2
Get help
Reported - view
Re: Find special Codes
.... where contains('Audit Code',"_x1")
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: trying to add 6 months to a date
This works for me: date(year(Datefield), month(Datefield) + 6, day(Datefield)) And somehow Ninox takes in account if the sum of the month is bigger than 12, the year is adapted too.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: button to number records incrementally
you can try something like: let Y := Year; let c := 1; for i in select Candidates where Year=Y and text(Filter)="Chosen" order by DOBirth do i.number := c; c :…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: API RESULT
@Andrea let header := { Authorization: "Bearer MYTOKEN", Accept: "application/json", 'API-NUMBER': "MYAPI" }; let myURL := "https://company.openapi.com/IT-pec/xxxxx"; let response :…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: API RESULT
@Andrea parseJSON(JsonResult).first(data).pec
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Expression to extract text in a string to the right after a dash character
@Fred https://docs.ninox.com/en/script/functions-overview/functions/replace
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Expression to extract text in a string to the right after a dash character
@bflack with an extra replace i guess: let txt := replace(substr(YourTextField, index(YourTextField, "-") + 1), """", ""); txt := replace(txt,""",""); txt where the middle one " of the """ is a curly…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Expression to extract text in a string to the right after a dash character
@Rafael oops, the text 2 was my test yourtextfield and i forgot to rename it here in this example. So it should be replace(substr(YourTextField, index(YourTextField, "-") + 1), """", "")
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Expression to extract text in a string to the right after a dash character
@bflacktry: replace(substr(YourTextField, index('Text 2', "-") + 1), """", "")
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
1
Get help
Reported - view
Re: Is it possible to convert Chinese characters into the initials of their corresponding Pinyin using code?
Not sure it'll work but you can try the replace() function.(use in a trigger) replace(text1,"你好","nh") text1 is your text-field
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Creating Chart with Multiple Series
Maybe with google charts? https://forum.ninox.com/t/h7hrmm9?r=x2hbksh https://developers.google.com/chart
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Error to send Email
It must be a bug, I have reported this to Ninox
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: chiose table from a variable
I guess this could be possible with Ninox API... I also tried with the eval() function but that doesn't work...
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Return JSON
More simplyfied: >for the first status : let i := parseJSON(JSON); first(first(i.result.recordsets)).status >for the second status: let i := parseJSON(JSON); first(i.result.recordset).status
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: Return JSON
If you want the first status, this works: (in this example, the data is held in a text field "JSON" and the code is written in a formula field) let i := parseJSON(JSON); let j := first(i.result.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
Re: json add array
You could try: let myURL := ""; let myBearer := (select Einstellungen).'Bexio API-Token'; let contact_id := Kontakt.'Bexio ID'; let user_id := 'Projektleiter 1'.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
1 yr ago
Get help
Reported - view
1
5
6
7
8
9
65
Ninox-Website
Overview
Learn and share
Get help
Service status
Plugin apps
Documentation
Setup
Installed apps
Public Cloud
Private Cloud
On-Premises
Plugins
Databases
Tables
Table relationships
Fields and elements
Pages
Views
Import and export
Modules
Printing
Templates
Use cases
Automation
Performance
Scripting
Functions
API
My account
Subscriptions
Administration
Private Cloud Administration
Manage workspaces
Manage collaborators
Access permissions
Backups and storage
Process monitor
Solutions
Ninox E-Invoice
View all topics