I'm doing a calculation for security camera storage requirements. I'm getting an error with Value(BaseStorage_Calculated.Text) that says, "This rule creates a circular reference between properties. A property can not reference itself or other properties affected by its value." I'm not sure how that makes sense.
The formula for BaseStorage_Calculated is;
If(Resolution_Value.Selected.Value="1.3",".06", If(Resolution_Value.Selected.Value="2",".06", If(Resolution_Value.Selected.Value="3",".06", If(Resolution_Value.Selected.Value="4",".06", If(Resolution_Value.Selected.Value="5",".09", If(Resolution_Value.Selected.Value="6",".09", If(Resolution_Value.Selected.Value="8",".12", If(Resolution_Value.Selected.Value="12",".35"))))))))
Resolution_Value.Selected.Value is a Choice dropdown in PowerApp from a SPO List.
I'm referencing this post for converting the text to a value Solved: Calculation of Labels / Text Input inside PowerApp - Power Platform Community (microsoft.com) So, based on Value(TextLabelKilometers.Text) * .9 I think my formula is correct.
