You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
In the context of DV360 Bidding Strategies, the following editable values in the sheet/UI are mutually exclusive:
Fixed Bid
Bid Goal
Bid Algorithm
For example, if we wanted to change the bid type from fixed bid to bid goal, we would have to delete the value in the record's Fixed Bid Edit column and add a value to the Auto Bid Goal Edit column. When this happens, we get the following NoneType error as the original value for Fixed Bid Edit is no longer a float, but an empty cell.
Float(row['Fixed_Bid_Edit']) * 100000 TypeError: float() argument must be a string or a number, not 'NoneType'
This prevents the user from changing a Line Item's bid strategy from one to another.
The text was updated successfully, but these errors were encountered:
In the context of DV360 Bidding Strategies, the following editable values in the sheet/UI are mutually exclusive:
For example, if we wanted to change the bid type from fixed bid to bid goal, we would have to delete the value in the record's Fixed Bid Edit column and add a value to the Auto Bid Goal Edit column. When this happens, we get the following NoneType error as the original value for Fixed Bid Edit is no longer a float, but an empty cell.
Float(row['Fixed_Bid_Edit']) * 100000 TypeError: float() argument must be a string or a number, not 'NoneType'
This prevents the user from changing a Line Item's bid strategy from one to another.
The text was updated successfully, but these errors were encountered: