@AndLun If the Control is inside a Gallery you must probably use ThisItem and a column inside it to LookUp a corresponding record from another Table (e.g. another SharePoint List if using SharePoint) based on the value of the column of ThisItem.
e.g. Visible property of the Image control
!IsBlank(LookUp(SomeOtherTable,ID=ThisItem.ID))
If you need assistance from the formula bar when making these formulas, such as to hover over parts of the formula bar to know the values, you can't do that from any formula that is inside the Gallery Control.
Temporarily try it from outside the Gallery on the First() record of the Gallery only if you need this information:
//test from a Control's Visible property that is outside the Gallery temporarily to hover over parts of the formula bar and see the values of things.
!IsBlank(LookUp(SomeOtherTable,ID=First(Gallery.AllItems).ID))
ThisRecord, ThisItem etc. are using scope and may always show "This formula uses scope, which is not presently supported for evaluation" when you try to hover over the formula bar when using these kinds of formulas.
Unless you already know the value of every part of your formula without any assistance from the formula bar, the above temporary formula from a Control outside the Gallery, is the only way to be able to hover over the formula bar and see something other than "This formula uses scope, which is not presently supported for evaluation".
See if it helps @AndLun