I'm trying to show data in more than 56 fields but found that HN is limited to only 50 fields.
1. Is there a way to increase fields using HN?
2. Is there a way to put data (numbers) into e.g. field 1 to field 8 and show those fields 1 to 8 in one single field e.g. in field 9?
Thank you.
Unfortunately the limit of 50 fields per card is a hard limit.
In our Android dev we are allowing users to override many hard limits and when HN V4 finally arrives it will have these options to.
To display field 1 to 8 inside field 9 - here are two examples:
@ Use APPEND so texts are on same line
@ separated by spaces
local f
for f=1 to 8
Append field f onto field 9
Append ‘ ‘ onto field 9
endfor@ Use AFTER texts are on different lines
local f
for f=1 to 8
Put field f after field 9
endforIf some of your field aren’t editable then perhaps you could replace them with a Canvas.
Canvases can easily be made to look like a read-only field.