Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want the chart to only show when a part is selected.
This is basically possible in the properties of the diagram under "Add-Ons" with GetSelectedCount(Part.Part) = 1.
But what can I do if the selection box for parts contains an IF condition.
Here for example:
if(Part.open =1, Part.Part, null())
As soon as a condition is in a selection, the GetSelectedCount no longer recognizes anything.
What can I do?
Try this
=Count({<Part.open={1}, Part.Part={"$(=if(Part.open=1, Part.Part, null()))"}>} Equip_Number)
Try this
=Count({<Part.open={1}, Part.Part={"$(=if(Part.open=1, Part.Part, null()))"}>} Equip_Number)
Perfect! Thank you so much 😄