Forum Discussion
deepakkhairnar
8 years agoFrequent 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 whic...
- 8 years ago
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]
v-chuncz-msft
8 years agoCommunity Support
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]
deepakkhairnar
8 years agoFrequent Visitor
Perfect..!! Thanks it is working as i want..Thanks again..:smileyhappy::smileyvery-happy: