I did a search on this error message on this forum but am surprised to find no one has provided a clear or any answer from what I can see.
It's very simple. I have two tables that are related together using an numeric ID field. All good.
Table A is the "one" side of the one to many relationship and Table B is the many side.
Table B contains one or more invoice date(s) that table A is after.
So I think simple, add a calculated column:
=CALCULATE(Min(Invoice[InvoiceDate]))
However that returns blank for some rows that ought to have values and incorrect dates for others.
So then I tried:
=RELATED(Invoice[InvoiceDate])
But this gives:
The column Invoice[InvoiceDate] either doesn't exist or doesn't have a relationship to any table available in the current context.
Anyone know the answer to this?
It's very simple. I have two tables that are related together using an numeric ID field. All good.
Table A is the "one" side of the one to many relationship and Table B is the many side.
Table B contains one or more invoice date(s) that table A is after.
So I think simple, add a calculated column:
=CALCULATE(Min(Invoice[InvoiceDate]))
However that returns blank for some rows that ought to have values and incorrect dates for others.
So then I tried:
=RELATED(Invoice[InvoiceDate])
But this gives:
The column Invoice[InvoiceDate] either doesn't exist or doesn't have a relationship to any table available in the current context.
Anyone know the answer to this?