Hey guys, Im trying to get only fully committed tr...
# general
i
Hey guys, Im trying to get only fully committed transactions to display on this search, I have this formula on my results to tell me if it is committed or not, but I dont know how to append it so the results to not include anything that isn't fully committed... any thoughts? --------------- Case when (ABS({quantity})-nvl({quantitycommitted},0)) = 0 then 'Fully Committed' else 'Not fully committed' end
k
Unfortunately, I'm guessing you want line data on your search right?
Meaning, you don't just want to see the wholly committed orders, but the actual items on them
i
actually just the orders is fine, the actual items we dont worry about, the shippers can click into the orders at that point
k
Then use that as a summary criteria with a sum equal to setup and pull your line details out of the order
0 if it's fully committed, 1 if not, your goal is zero
i
I dont even know how to do that. I feel like I should but man, this is evading me right now.
message has been deleted
like that Im guessing?
I switched it forumula numeric and then as a sum but then it broke when I ran the report with the invalid expression error
k
Case when (ABS({quantity})-nvl({quantitycommitted},0)) = 0 then 0 else 1 end
i
Oh! Thank you! I'm still working on my formulas, not the best at them yet. I really appreciate your help.