FlexPro
HistoryBase
Engineering
Training
Downloads
FlexPro-Support
Wissen
Community
Über Uns
Referenzen
Jobs
Allgemeiner Kontakt
Händlerverzeichnis
FlexPro-Support
DE
EN
FR
Placeholder
Produkte und Lösungen
Support und Downloads
Unternehmen
Magazin
Kontakt
Sprache
MyWeisang

Account Einstellungen

Topic

access to formula value

Startseite ' Community ' FPScript ' access to formula value

Anzeigen von 3-Stellen - 1 bis 3 (von insgesamt 3)
  • Autor
    Beiträge
  • #33445
    Anonym
    Gast

    I would like to access and to extract the formula value into a data set in order to make other calcultation and work with VB.

    How can I do it ?

    regards,

    #33447
    Anonym
    Gast

    I would like to access and to extract the formula value into a data set in order to make other calcultation and work with VB.

    How can I do it ?

    regards,

    #33446
    Bernhard Kantz
    Teilnehmer

    It’s possible to evaluate a FPScript formula. In VBA you can use the [b]Evaluate[/b] method.
    [code]
    Dim oFml as Formula
    Set oFml = ThisDatabase.RootFolder.Object(“Formula”, fpObjectTypeFormula)
    oFml.Evaluate

    Dim oDataset as Dataset
    Set oDataset = ThisDatabase.RootFolder.Object(“Formula”, fpObjectTypeDataSet)
    Dim vtValue
    vtValue = oDataset.value
    [/code]
    support@weisang.com

Anzeigen von 3-Stellen - 1 bis 3 (von insgesamt 3)
  • Du musst angemeldet sein, um auf dieses Thema antworten zu können.