Forum Discussion
issues with Data Relationship
- Anonymous5 years ago
HI Anonymous,
These hidden features are suitable with the 'data view' level that you used to design visuals. If you change to data table views, this hidden field will also be displayed.
Currently, it not support to design totally hidden fields on the power bi desktop side. I think it might be a possibility if these changes are directly applied in the data model side. You can use third-party tools to connect and check the data model instance if it helps.External tools in Power BI Desktop - Power BI | Microsoft Docs
Regards,
Xiaoxin Sheng
They could be showing it in a slicer then have a measure that reads the selection and uses a switch to return the measure that corresponds to the selection.
Display Value =
VAR TimePeriod =
SELECTEDVALUE ( TimeCalGroup[Periods] )
RETURN
SWITCH (
TimePeriod,
"Last 2 Weeks", [Last 2 Weeks Measure],
"MTD", [MTD Measure],
"QTD", [QTD Measure],
etc..
)
They may also be using it in a calculation group.
is it possible that this measure is hidden? because i cannot find it?
- Anonymous5 years agoNot applicable
HI Anonymous,
These hidden features are suitable with the 'data view' level that you used to design visuals. If you change to data table views, this hidden field will also be displayed.
Currently, it not support to design totally hidden fields on the power bi desktop side. I think it might be a possibility if these changes are directly applied in the data model side. You can use third-party tools to connect and check the data model instance if it helps.External tools in Power BI Desktop - Power BI | Microsoft Docs
Regards,
Xiaoxin Sheng