Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
Solved! Go to Solution.
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])
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])
User | Count |
---|---|
64 | |
59 | |
47 | |
32 | |
31 |
User | Count |
---|---|
84 | |
73 | |
52 | |
50 | |
44 |