Skip to main content
Ninox-Website
Ninox-Documentation
How to enable Javascript
Sign Up
Log in
Learn & Share
Get help
Webinars
All topics
Contact
Privacy
Overview
Profile
Fabio
Fabio
noCodeApp
Reggio Emilia, Italy
121
2
1
Joined: 10 May 2017
Follow
https://nocodeapp.it/en
My Posts
Latest Posts
Re: Multiple records print with button
Great!. Now it works perfectly. Thank you Jacques
Fabio
noCodeApp
Fabio
1 mth ago
Get help
Reported - view
Re: Multiple records print with button
Thanks Jacques TUR. Now it works, however the multiple download no longer works correctly: the pdf is generated only for the first record of the selection
.
Fabio
noCodeApp
Fabio
1 mth ago
Get help
Reported - view
Re: Multiple records print with button
Jacques TUR , the global function: function printAndDownloadMutiRecord( strNids : text, reportName : text, fileName : text ) do var n := split(replace(strNids," ",""),","); #{ var config = { nid:…
Fabio
noCodeApp
Fabio
1 mth ago
Get help
Reported - view
Re: Multiple records print with button
Jacques TUR , I think the code ignores the name assigned to the file (fileName) using the default name of the record. Could you take a look? Thanks!
Fabio
noCodeApp
Fabio
1 mth ago
Get help
Reported - view
Re: Insert multiple elements into case of switch
RoSoft_Steven
Fabio
noCodeApp
Fabio
4 mths ago
Get help
Reported - view
Re: Insert multiple elements into case of switch
Switch ... case statement needs round brackets () for multiple instructions. Try this: switch 'Progress Bill' do case 1: 'End data' := null case 2: ( 'Total Price' := 0; 'End data' := null ) case 3:…
Fabio
noCodeApp
Fabio
4 mths ago
1
Get help
Reported - view
Re: Leave formula field empty if .....
It shouldn't. What is the code inside the TOTAL THB column?
Fabio
noCodeApp
Fabio
4 mths ago
Get help
Reported - view
Re: Leave formula field empty if .....
Hello Bernd. You need a comparison operator instead of an assignment operator. Try this: if Qty = true then //you can also write 'if Qty then' Qty * PPU else null end Fabio
Fabio
noCodeApp
Fabio
4 mths ago
Get help
Reported - view
Re: Adding and removing items from a list
Hi Stefano, following the post and ideas suggested by @fred and @jacques_tur, a code proposal could be as follows: let myPersona := (select Persone).(Cognome + " " + Nome); let myAggiunti :…
Fabio
noCodeApp
Fabio
7 mths ago
1
Get help
Reported - view
Re: Issues with switch statement sintaxe
Hi Jose. The Ninox case construct for multiple code statements needs to be enclosed in parentheses. Try this: --- let Total := 0;let x := [1, 2, 3, 4, 5];for p in x do switch p do case 1:…
Fabio
noCodeApp
Fabio
1 yr ago
Get help
Reported - view
Re: Problem printing Layouts
Ciao Massimiliano. Seems like a print engine problem. Could you send me the dB that I do a test with a different print engine to see if the problem depends on that? info@nocodeapp.it Fabio
Fabio
noCodeApp
Fabio
1 yr ago
Get help
Reported - view
Re: Need to Match show rows from a table if email field matches
Hi Predro. Try this: --- let me := this; select Events where EmailTo or EmailFrom = me.WorkEmail --- Fabio
Fabio
noCodeApp
Fabio
1 yr ago
Get help
Reported - view
Re: Roles on owner
Nope. The Owner is the creator of the team. Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: How do I change email on my own profile?
Sending mail to support@ninox.com Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: Sort Choice (dynamic) entries
Hi Kevin. Try this: -- select Category order by * -- * Amount or Name or any field in the table you want to sort by Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: To change a word of a field with a formula ?
Hi Addinsell. -- replace(yourField, "limicole", "petit échassier limicole") where yourField is field that contains text (limicole) you want to replace -- Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: Styled Color in Calendar
Hi John. In the Date field --> Show as, put this: -- styled(text(Status) + " | " + Customers.'Biz Name' + " | " + Coordinator, color(Status)) -- Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: Dynamic choice which trigger numeric value change?
Hi Anna. try this: -- record('Stock Parts',number('Stock Parts CABLING')).RRP -- Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: Control records Access by user.
Hi Carlos. In the expenses table settings -> Readable if, put this:--user() = 'Created by'-- Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Learn & Share
Reported - view
Re: Create n records in a subtable at once
Hi MP. Try this: -- let xcli := field1;let xdata := field2;let xnp := (create PARCELLE);xnp.( fieldA := xcli; fieldB := xdata);let newPrestazione := (create PRESTAZIONI);newPrestazione.…
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: Consistency check formula
Hi Giovanni. If you want to make it work with 0.01 use John's code by rounding the calculation, like this: - if abs(round('Total Activity-Related Budget (IC)' - ('Total Direct Costs (IC)' + 'Total HQ…
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: problemi di stampa dei report
Ciao. È necessario cambiare il motore di stampa. Scrivi a support@ninox.com che ti risolvono il problema. Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: Hiding a multiple choice field
Hi Giovanni. Put this in "Diplay field only if" in your Date field: - not chosen('Multiple choice', "A") - Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: TRIGGER problem - Help please!
Hi Anna. Try this: --- if 'Courier Type' = 1 then 'Courier Charge' := 29.99; 'Insurance Value' := 1else if 'Courier Type' = 2 then 'Courier Charge' := 34.99; 'Insurance Value' := 2 endend --- Fabio
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
Re: Open tab with button ?
Certainly. From the manual:https://ninox.com/en/manual/calculations/reference-of-functions-and-language ---openTable(tableName, viewName) --> opens a table view--- Example: if the table is:…
Fabio
noCodeApp
Fabio
2 yrs ago
Get help
Reported - view
1
2
3
4
5
Ninox-Website
Ninox-Documentation
Overview
Learn & Share
Get help
Webinars
View all topics