1

In DAX I can use RELATEDTABLE to get a table of data I want to refine. I can use FILTER to reduce the table to 1 row that contains the data I actually want.

I can use COUNTROWS to verify that I have 1 row like this:

TEST = COUNTROWS(FILTER(RELATEDTABLE(Config), AND([ConfigColumn1]=="Value1", [ConfigColumn2]==[LocalColumn]))), but how do I actually access the value in a specific column?

How do I get the value of ConfigColumn3 of the first, and only row?

1 Answer 1

0

Use something like MINX(<your table with a single row>, <column you want>)

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.