- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
formulas not working
I am using Windows and JMP 18
Im Having some problems with version 18
My most recent one is that calculation of formulas does not work. So for example
I have two columns X and Y - both continuous numeric variables If make a variable Z (also numeric continuous) and use a formula in it: X * Y
I get nothing (just dots)
any ideas??
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: formulas not working
Created:
Jul 25, 2024 06:05 PM
| Last Modified: Jul 25, 2024 3:09 PM
(598 views)
| Posted in reply to message from PTR50 07-25-2024
just use the formula
:X * :Y
or if "It" is the reference to the data table you could specify
It = current data table();
It:X * It:Y
The JMP Log might have an error statement
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: formulas not working
Created:
Jul 26, 2024 07:26 AM
| Last Modified: Jul 26, 2024 4:28 AM
(545 views)
| Posted in reply to message from txnelson 07-25-2024
the easiest way to generate a new column: new formula column right click menu:
and then you can go to the Log and check the code ...