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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
pasupathi
Helper I
Helper I

show developer availability based on condition (show in table or matrix or visual)

Dear Helper 

  please kindly read the complete data. kindly share the powerbi file 

table A

 developer projectstatus  

   a                fsd

   b                uat

   c                hypercare

   d                dev

   e                devloper allocated

   f                 live 

table B
developer    teammanger  
  a                subbu

  b                subbu

  c                subbu

  d                subbu

  e                subbu

  f                subbu

  g               subbu 

  h               subbu

condition

1. join the two tables

2. show developer who are not in fsd,uat,live

3. show developer who doesnt have project status

regards

rasi

 

 

 

1 ACCEPTED SOLUTION
ddpl
Solution Sage
Solution Sage

@pasupathi 

 

2. show developer who are not in fsd,uat,live

 Create measure as per below:

Condition 2 =
CALCULATE (
    MAX ( TableA[project status] ),
    TableA[project status] <> "fsd",
    TableA[project status] <> "uat",
    TableA[project status] <> "live"
)

 3. show developer who doesnt have project status

Create column in TableB as per below

 

project_status = LOOKUPVALUE(TableA[project status],TableA[developer],TableB[developer])
then filter by slecting blank as per below snap 
 
ddpl_0-1657951669043.png

 

View solution in original post

1 REPLY 1
ddpl
Solution Sage
Solution Sage

@pasupathi 

 

2. show developer who are not in fsd,uat,live

 Create measure as per below:

Condition 2 =
CALCULATE (
    MAX ( TableA[project status] ),
    TableA[project status] <> "fsd",
    TableA[project status] <> "uat",
    TableA[project status] <> "live"
)

 3. show developer who doesnt have project status

Create column in TableB as per below

 

project_status = LOOKUPVALUE(TableA[project status],TableA[developer],TableB[developer])
then filter by slecting blank as per below snap 
 
ddpl_0-1657951669043.png

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.