-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
FPSricpt ChangeUnit function does not work ?
- This topic has 2 replies, 2 voices, and was last updated 9 years, 3 months ago by HerveM1234.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
July 29, 2015 at 3:48 pm #12882HerveM1234Participant
Hi,
With :
Dim toto toto=Signal({1, 3, 5, 7}, {0, 1, 2, 3}) ChangeUnit(toto,"test") Return(toto)
this formula, the formula’s units remains empty ! Why?
July 29, 2015 at 3:48 pm #8542HerveM1234ParticipantHi,
With :
Dim toto toto=Signal({1, 3, 5, 7}, {0, 1, 2, 3}) ChangeUnit(toto,"test") Return(toto)
this formula, the formula’s units remains empty ! Why?
July 31, 2015 at 8:42 am #9392Bernhard KantzParticipantThe function ChangeUnit() returns a dataset with the unit set/converted to the trailing parameters. It does not alter the first argument itself. To get the desired result you may write:
Dim toto = Signal((4, 1, 2), 1) ChangeUnit(toto, "test")
Note: The last expression will become the value of the formula, Return is not necessary.
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.