Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi
Can someone please assist me how to derive the value for Column "CC_Derive" using the following example
Happy to provide the sample data file but not sure how and I can't see the option
EmpNo Name Amount CC Flag CC_Derive
123 Mr Smith 100 4652 0 4652
123 Mr Smith 200 4659 0 4659
123 Mr Smith 300 999 1 4659
124 Mr X 400 4971 0 4971
124 Mr X 300 999 1 4971
124 Mr X 200 4834 0 4834
124 Mr X 100 4659 0 4659
Solved! Go to Solution.
Hi Alex,
Thanks for your help appreciate that, its kind of working but I need to resolve using DAX funtion I guess
After few attempts i think its workingfine
I have use teh following steps:
Output Example
Hi Alex,
Thanks for your help appreciate that, its kind of working but I need to resolve using DAX funtion I guess
After few attempts i think its workingfine
I have use teh following steps:
Output Example
I have used following function (New Column) to derive the Flag values and Max_Amount
col_Flag_999_998=
var var1 = tbl_Distinct_Employee_CC[CostCentre]
RETURN
If(OR (var1 = 498650, var1 = 498655) , 1 ,BLANK())
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 4 | |
| 3 | |
| 2 |