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
Plugins
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
1634
posts
234
likes received
5
followers
Badges
Latest Posts
Re: Background Color
Maybe because the formula field is styled in the settings of that field...(where you can chose also the style of the border etc.)
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: How to display a date based on a choice field
Is it a choice field or a multiple choice field? How would it return one date with a multiple choice field if more can be selected.... This works for me with a choice field: let d := Date;…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: How to display a date based on a choice field
while weekdayName(weekday(Date)) != ....
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: How to display a date based on a choice field
Something with: while weekday(Date) != text(Days) do Date := Date + 1 end this is not tested, it might need some tweaking... Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Choice field as a switch question.
Alain, At first glance I thought this wouldn work but yeah, it also works your way. chosen(Lined_Per_Width,"Interlining") gives Yes if the button is active and No if it's not.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Choice field as a switch question.
Michael, This works: let c := 0;let mc := text(Lined_Per_Width);if contains(mc, "Interlining") then c := c + 25end;if contains(mc, "Curtains over 2.7") then c := c + 55end;if contains(mc,…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Choice field as a switch question.
It should be : let mc := text('Multiple Choice');
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Choice field as a switch question.
let c := 0; let mc := concat('Multipe Choice'); if contains(mc,"Extra Length") then c := c + 25 else if contains(mc,"Extra width") then c := c + 55 else if contains(mc,"Option 3") then c := c+ 33 ...…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Fx Field to Display Date or Text Depending on If Statement
let dateAsTxt := text(format(date(Orders.'Date Deposit Paid'), "DD/MM/YYYY"));
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Fx Field to Display Date or Text Depending on If Statement
Try this: let wavDep := text(Orders.'Waver Deposit');if wavDep = "Yes" then "N/A"else if wavDep = "No" then text(Orders.'Date Deposit Paid') else if wavDep = null then "Incomplete" end endend Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: follow up on previous question and problem with equation
Indeed, the previous post combined with this one gives Alains' result... thanks Alain.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: follow up on previous question and problem with equation
let LastDate := max('Rope Inspection Record'.'Inspection Date');first((select 'Rope Inspection Record' where 'Inspection Date' = LastDate).Result) It's possible you don't need the first() in the code.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Variables: let vs var
If you have a cloud subscription, I can invite you to that team, All I Need is your Email linked to Ninox.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Variables: let vs var
Quoted from the 0001_Ninox-Reference database: "The 'var' statement is used to declare a variable in Ninox by assigning a value to it. It automatically assumes the data type of the assigned value.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Return/Select Record ID of a sub table
last(select ...... order by date) adding order by date will give jou the latest date.. Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Two formulas updating two seperate fields in a choice field.......Help
Michael, Does this work for you? if 'Num of Curtains' = 1 thenWide_W := "1 x" + " " + Wide_Widths;Num_of_Width := "1 x"+" "+ Curt_elseif 'Num of Curtains' = 2 thenWide_W :…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Formula to Round up to .5 or full number.
Thank you Michael, and a Happy New Year to you too.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: How can you call an Apple Shortcut from the Ninox iPad app? Found the answer 😊
This is also interesting like your use case for apple users.... https://ios.gadgethacks.com/news/always-updated-list-ios-app-url-scheme-names-0184033/
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Learn and share
Reported - view
Re: Formula to Round up to .5 or full number.
let n := Number % 1;if n = 0 thenNumberelseif n < 0.5 thenNumber - n + 0.5elseif n > 0.5 then Number - n + 1 else Number endendend
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: A personal remark
Happy New Year ! 🥂
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Learn and share
Reported - view
Re: Guidance to build my first database
Waste-bin after clicking on the empty line ?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Guidance to build my first database
Gregg, Thanks for the heartening words. First I“ll let you play a little more to learn more about the database, but you need to know this: You have 3 MAIN Tables in my example: To start with:…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Guidance to build my first database
👍
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: Guidance to build my first database
Hi Gregg, I made an example database where I“ve pulled all my tricks out of my sleeves, and maybe it”s a little overkill, but I think this is more what you want. You can download it here: https://www.…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
Re: What is the formula to trigger a yes/no option to set up a follow-up date field 30 days from that day?
Hi, you can put this formule in the trigger after update of your Yes/No field: if “Yes / No” = true thenAppiontmentField := appointment(datetime(number(now()) + 1000 * 60 * 60 * 24 * 30),…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
5 yrs ago
Get help
Reported - view
1
36
37
38
39
40
66
Ninox-Website
Overview
Learn and share
Get help
Service status
Plugins
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