Any workarounds you can think off?
# general
s
Any workarounds you can think off?
b
might want to explain this better
dont know how you have a problem adding quantity on hand multiple times if it only happens one per each transaction line
s
quantity on hand its always the same value on each transaction, its getting pulled from the item record.
quantity is different based on the item fulfillment
s
Are you using item fields?
Do item fields: Quantity on Hand
So it’ll pull from the item record instead of the transaction
s
yes, but I need to pull that field
s
Doesn’t that field pull from the item record anyway?
s
it is
this is my formula (very basic)
{quantity}/{quantity}+{item.quantityonhand})
s
Can you wrap that in a max?
b
{quantity}/({quantity}+{item.quantityonhand})
still dont know what you are trying to calculate
s
Thats what Finance is trying to get to... Some metric they need
quantity fulfilled / quantity fulfilled + Total Inventory on Hand
and this is grouped by SKU
For Example,
message has been deleted
2747/(2747/5540) = .3314
The result is wrong, because when doing a SUM of the formula, its adding 5540 (Quantity on hand) multiple time due to being pulled in every line
message has been deleted
its calculating 2747/(2747+9639600)
b
share the result columns
s
message has been deleted
b
i think you want SUM({quantity})/(SUM({quantity})+{item.quantityonhand})
i havent had any luck doing those with summaries
you might have better luck doing the opposite and do an item search using the transaction join
✔️ 1
you might be able to avoid using summaries that way
s
I was about to try that
and your example of the formula is exactly what I want
Doestn work recreated as an item search, I still have to group by item name to group all transaction lines
mmmmm
d
have you tried setting Main Line = True?