Tagged with cells - Visokio Forums
http://forums.visokio.com/discussions/tagged/cells/feed.rss
Mon, 30 Oct 17 17:35:05 -0400Tagged with cells - Visokio Forumsen-CAFormulae: Field/Cell direct access functions CELL, etc. (2.8+)
http://forums.visokio.com/discussion/1658/formulae-fieldcell-direct-access-functions-cell-etc.-2.8-
Tue, 17 Jul 2012 09:56:49 -0400steve1658@/discussions CELL FIELDCOUNT FIELDNAME FIELDNUMBER
Formula examples to obtain cell values
CELL([Price], 53)
CELL(FIELDNAME(3), CURRENTROW()-1)
Javascript preprocessing example to list all field values
for (n = 1; n<=fieldCount(); n++) { out.println(fieldName(n)+": "+cell(fieldName(n), 1)+"<br>"); } ]]>Formula: Referencing same-field cells
http://forums.visokio.com/discussion/1022/formula-referencing-same-field-cells
Thu, 29 Sep 2011 16:16:57 -0400alexhoward1022@/discussions Also, thank you for the SCRIPT idea. Could you please post an example formula with a script that could help get me started writing one?