Is there any way to multiply columns on a saved se...
# general
j
Is there any way to multiply columns on a saved search?
g
As far as having a column that is the result of multiplying other columns or values? You can have a field/column that is a formula
j
I'd like to add a new column that is these two columns multiplied
6*59 so the column should show 354
So essentially you are adding a new field with a numeric formula as the type. Then you'll have to specify the two other fields
NVL({averagecost}, 0) * NVL({quantityavailable}, 0) was the example given. I'll look in my system to see if can reproduce as well.
Yep, I did NVL({inventorydetail.itemcount}, 0) * NVL({custitem_actual_length}, 0)
That worked on my tables, let me know if throwing error.
273 Views