Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
salman_ali
Helper IV
Helper IV

issues with Data Relationship

Hello,

 

I am trying to recreate a dashboard created by a departed team member.  It seems like an easy question, but I am a bit confused

 

In the model there is a hidden table with no relationships

 

salman_ali_0-1620394520516.png

 

 

 

When you go in the data view, this below is what the table contains. 

 

salman_ali_1-1620394520532.png

 

 

Since this was created in dax and not power query (table is not present in power query), I am thinking it was created by using ‘Enter Data’. 

My question is, How is it that this ‘period’ column is being used in a visual as a column and is able to communicate with other tables and measures.  Have you even seen this before?

 

Any assistance is much appreciated

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @salman_ali,

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

Power bi data model instance 

Regards,

Xiaoxin Sheng

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @salman_ali,

In fact, current power bi can use some advanced methods to interact with different table records without relationships.
The first way it uses measure filter based on expressions (apply on 'visual level filter') to interact with selections from slicer selections. 
In addition, you can also direct invoke table values in calculated column/table expressions. (e.g. create a calendar table based on another table min/max date values; calculate rank based on the median value of another table records)

Regards,

Xiaoxin Sheng

jdbuchanan71
Super User
Super User

You can, yes.  If you dowload the Vertipaq Analyzer and hook it to the model you will be able to see all of the measures that exist in the model pulled into excel.  Then you could search for that table name and see where it is used.

https://www.sqlbi.com/tools/vertipaq-analyzer/

 

jdbuchanan71
Super User
Super User

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?

Anonymous
Not applicable

HI @salman_ali,

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

Power bi data model instance 

Regards,

Xiaoxin Sheng

hmm interesting, yes there is a slicer on the page, so maybe they are using that technique.  I can't seem to locate that measure though.  Can they hide the measure?

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors