Hello guys,
Was wondering if you guys can help me trim these last 4 digits (.0000) of this value in the Generic Inquiry (78,380.0000)
I tried this =RTRIM(TbleachH.HeavyWeight]) and a few others but no luck.
This is how it looks on the GI
Hello guys,
Was wondering if you guys can help me trim these last 4 digits (.0000) of this value in the Generic Inquiry (78,380.0000)
I tried this =RTRIM(TbleachH.HeavyWeight]) and a few others but no luck.
This is how it looks on the GI
Hi
Hi,
I put it like this =CInt(tbleachH.HeavyWeight]), but ended up with the same results.
Hi
Where you get the Schemma SOLine from, this GI only has a BleachL, and BleachH tables.
Hi
In the Generic Inquire use with the format =Format('{0:f2}','field name]) to trim the value
Hope it helps!
Regards,
Sweta
Hi
Where you get the Schemma SOLine from, this GI only has a BleachL, and BleachH tables.
Hi
Maybe there is an integer (number) field in the BleachL or BleachH tables you can use on the Field Schema column. But if there is none, you can try to use the Left() function it this will make the value to become a string. Sample data output would be from 10,000.0000 → 10000.
=LEFT(cbleachH.HeavyWeight],Len(ebleachH.HeavyWeight])-5)
Hi
=CInt(Round((SOShipment.ShipmentWeight],0))
Generic Inquiry: (Please find the attached generic inquiry for you to verify)
RESULT
Hi
You could also try in the Format line ='$####,####,####'. This will trim off the ending 0’s.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.