Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello experts,
Is there a way to sum the quantities in one cell comma separated values? Please see data below.
Result should be 3. When using subfield, it is showing as 6 due to the data source has 2 of the same rows(duplicate)
Thanks,
Ran
Hi,
I guess your best approach would be to eliminate your redundancy as it might cause issues beyond summing those quantities.
However, one solution to sum your comma separated [SKU QTY] values would be:
Evaluate(Replace([SKU QTY],',','+')) as [SKU QTY]
hope this helps
regards
Marco
Hi,
I guess your best approach would be to eliminate your redundancy as it might cause issues beyond summing those quantities.
However, one solution to sum your comma separated [SKU QTY] values would be:
Evaluate(Replace([SKU QTY],',','+')) as [SKU QTY]
hope this helps
regards
Marco
thank you Marco it works!