How can I exclude if the decimal point is 0 ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2022-07-22 08:33 PM
A = 1000 B =1000 => 10x10
A = 1150 B =1120 => 11.5x11.2
in GDL TEXT2
Solved! Go to Solution.
- Labels:
-
Library (GDL)
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2022-07-22 09:02 PM
I found it.
I can create an IF statement that uses the FRA() function... ^^
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2022-07-25 08:42 AM
TEXT2 0,0,str("%~", 11.5*11.2)
there are different flags for STR function. ~ hide 0 decimals
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2022-07-22 09:02 PM
I found it.
I can create an IF statement that uses the FRA() function... ^^
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2022-07-25 08:42 AM
TEXT2 0,0,str("%~", 11.5*11.2)
there are different flags for STR function. ~ hide 0 decimals
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2022-07-25 09:05 AM
thank you ^^