Forum Discussion
Anonymous
8 years agoNot applicable
Absolute references in Power BI
Hi, Is there a way to do absolute references in Power BI like there is in Excel. Essentially I want to be able to always reference a single cell value in a table visual. Thanks!
TomMartens
Super User
8 years agoHey,
acutally thats not possible.
To achieve something similar you can create a measure like so
CALCULATE(
//refernce to a measure that is shown in the table visual
[measure name]
//reference to a column from a certain table
SUM('tablename'[columnname]
,FILTER(
ALL('tablename')
,tablename'[columnname 1] = filtervalue1
,...
,tablename'[columnname n] = filtervaluen
)
)
Hopefully this gives you an idea.
Regards,
Tom