So there is context() with view, viewtype, and so on…
But first let me describe a lil bit the situation..
Table A: This is the main log for the app, its grouped by month in descending order
i have a formula for the month that gives me the actual balance in every account we manage for the today() MONTH only
Formula:
If(Text([Timestamp], “YYYY MM (MMMM)”) = Text(Today(), “YYYY MM (MMMM)”),
Concatenate(Text([Timestamp], “YYYY MM (MMMM)”),
" | Banco = ",
Text(Any(Select(Cuentas[Balance], [Cuenta] = “Banco”))),
", Cash = ",
Text(Any(Select(Cuentas[Balance], [Cuenta] = “Cash”)))),
Concatenate(Text([Timestamp], “YYYY MM (MMMM)”)))
it gives me exactly what i want for the first row in the main page of the app.
Then there’s Table B in a Detail view that has a Ref_Rows for Table A
Now here is where i don’t want the above formula to work, so i tried tests with context() but even if im in a detailed view referencing Table A it gets False whether i try option View, ViewType or Table with the context() formula
is there anyway around this? to identify in a formula if the row is being referenced in a view or in another table? because what i understand about Ref_Rows is that it gets the VIEW of the table that is referenced to
Just taking a shot here, maybe there isn’ a way around… if so… very much appreciated, else… well thanks for the read ![]()

