Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello, I was trying to create a measure using already existing measures.
This works fine
CALCULATE(INT(submittalsFormula) & INT(interviewsFormula) ,
SuccessRatioDetails[RecruiterId] = recuiterId)
If I change it to like this, It overrides the visual fiter context. I would like the return results to be formatted like Result1/Result2 to present in my matrix grid.
CALCULATE(INT(submittalsFormula) & "/" & INT(interviewsFormula) ,
SuccessRatioDetails[RecruiterId] = recuiterId)
I would greatly appreaciate if you can explain the behaviour and solution for this issue.
Thank you
Skoleti
You may try the following measure.
Measure = CALCULATE ( INT ( submittalsFormula ), SuccessRatioDetails[RecruiterId] = recuiterId ) & "/" & CALCULATE ( INT ( interviewsFormula ), SuccessRatioDetails[RecruiterId] = recuiterId )
User | Count |
---|---|
73 | |
70 | |
38 | |
24 | |
23 |
User | Count |
---|---|
96 | |
93 | |
50 | |
41 | |
40 |