Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi everyone!
I want to set up a Calculated column which help me identify "high transfer" and "low transfer"
If "Average Transfer Times" is greater than 30 and "# of Calls" is greater or equal to 15
the Column shows" High Transfer"
If "Average Transfer Times" is less than 3 and "# of Calls" is greater or equal to 50
the Column shows" Low Transfer"
How can I create this calculated Column?
Thanks in advance!
Solved! Go to Solution.
Hi @njxfoster
For your question, here is the method I provided:
Here's some dummy data
Create a column
Transfer Type =
IF(
'Table'[Average Transfer Times] >30 && 'Table'[# of Calls] >= 15,
" High Transfer",
IF(
'Table'[Average Transfer Times] < 3 && 'Table'[# of Calls] >= 50,
"Low Transfer",
BLANK()
)
)
Here is the result
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @njxfoster
For your question, here is the method I provided:
Here's some dummy data
Create a column
Transfer Type =
IF(
'Table'[Average Transfer Times] >30 && 'Table'[# of Calls] >= 15,
" High Transfer",
IF(
'Table'[Average Transfer Times] < 3 && 'Table'[# of Calls] >= 50,
"Low Transfer",
BLANK()
)
)
Here is the result
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @njxfoster
Try below
Column=
Switch (
True (),
Tablename[Average Transfer Times]>30 && tablename[# of Calls]>=15,"High transfer",
Tablename[Average Transfer Times]<3 && tablename[# of Calls]>=50,"low transfer")
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 14 | |
| 7 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 25 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |