I have a price column that is use for a supplier rate. It’s INITIAL VALUE if referencing a rate sheet we have but is editable. We have some instances that there is no freight and our customer is requiring to return a dash when it is blank. But with a Price column a dash is not allowed. here is my current formula for initial value
ANY(
SELECT(
Rate[Rate],
AND(
[Origin] = [_THISROW].[Origin],
[Destination] = [_THISROW].[Destination],
[Supplier] = [_THISROW].[Supplier]
)
)
)
How do I add in that if my Driver column is “Customer Pickup” it will allow a dash