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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
deepakkhairnar
Frequent Visitor

New Dynamic Table

Hello Friends,

I have a data sheet with multiple columns like site name,change request,block mode,status,candidate etc...

what i want is a new table in BI which will show me the count of table which is required as per the criteria so that i can easly drag and drop.Table should be as below;

No of website=count of column Site Name(<>blank)

No of Inscope=count of the Site name(<> blank),candidate<>Yes(it has Yes and No),Status<>"*out of scope*" 

Remaining=No of website - No of Inscope

I really need your help in measures or dax but want a new table which can show this info.

 

Thanks,

Deepak

 

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@deepakkhairnar,

 

You may drag measures below to a Table visual.

No of website =
CALCULATE (
    DISTINCTCOUNT ( Table1[site name] ),
    NOT ( ISBLANK ( Table1[site name] ) )
)
No of Inscope =
CALCULATE (
    DISTINCTCOUNT ( Table1[site name] ),
    NOT ( ISBLANK ( Table1[site name] ) ),
    Table1[candidate] <> "Yes",
    Table1[status] <> "*out of scope*"
)
Remaining =
[No of website] - [No of Inscope]
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@deepakkhairnar,

 

You may drag measures below to a Table visual.

No of website =
CALCULATE (
    DISTINCTCOUNT ( Table1[site name] ),
    NOT ( ISBLANK ( Table1[site name] ) )
)
No of Inscope =
CALCULATE (
    DISTINCTCOUNT ( Table1[site name] ),
    NOT ( ISBLANK ( Table1[site name] ) ),
    Table1[candidate] <> "Yes",
    Table1[status] <> "*out of scope*"
)
Remaining =
[No of website] - [No of Inscope]
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Perfect..!! Thanks it is working as i want..Thanks again..Smiley HappySmiley Very Happy

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.