-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Home > Community > FPScript > how do i return multiple datasets > Antwort auf: how do i return multiple datasets
August 28, 2008 um 6:11 pm Uhr
#8783
Bernhard Kantz
Teilnehmer
For each dataset you have to create your own FPScript formula. Create two new formulas and use the List Element Operator to take an element from a list.
Example:
Formula1 with the name “ListFormula”
return [<value1>1, <value2>2]
Formula2:
ListFormula.Value1
or
ListFormula.[“Value1”]
or
ListFormula.[0]
Formula3:
ListFormula.Value2