For Dataverse calculated column is it possible to use data from two tables? In Table1 I have a column that has Total# of units for each Lot#. In Table2 I have details for each unit and it includes Lot#. I want to add calculated column to Table1, "Units_Remaining", where calculation is something like:
Table1.Total# - Countif(Table2, And(Table2.Lot#=Table1.Lot#,IsBlank(Consumed)=true))
Is this possible?