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.
I have this column formula as my slicer for my segmentation but it is not working properly.
UAP means Bet > 0
w/ Deposit means Deposit > 0
w/ Bonus means Bonus > 0
The Segmentation Slicer
Table Relationship
Sample Table
Player = public register customer_name (default column)
Bet = All Games FilteredBet (dax column)
Deposit = public register CRM DEPOSIT AMOUNT (dax measure)
Bonus = public register CRM BONUS AMOUNT (dax measure)
I don't know if the problem is in the relationship table or the formula's I used because when I'm selecting a slicer it does not give me the correct result.
Can someone help me?
Solved! Go to Solution.
Hi @Francease04
To address the issue you're facing with your segmentation slicer not working properly, let's take a systematic approach:
Your slicer categorizes players into the following segments based on these conditions:
The slicer should properly filter the data in your visualizations.
The issue might arise from:
From the screenshots (or descriptions of your model), confirm these:
Use calculated columns to segment players based on their Bet, Deposit, and Bonus values.
Create a new calculated column in the Player Table to segment players:
Segmentation =
SWITCH(
TRUE(),
[Bet] > 0, "UAP",
[Deposit] > 0, "w/ Deposit",
[Bonus] > 0, "w/ Bonus",
"No Activity"
)
This column categorizes players based on their first matching condition.
If the Bet, Deposit, and Bonus are calculated using measures, you cannot directly use them in a calculated column. Instead, create a Segmentation Measure:
Segmentation Measure =
SWITCH(
TRUE(),
MAX('Transactions Table'[Bet]) > 0, "UAP",
MAX('Transactions Table'[Deposit]) > 0, "w/ Deposit",
MAX('Transactions Table'[Bonus]) > 0, "w/ Bonus",
"No Activity"
)
Add this measure to your slicer visual. Power BI supports measures as slicer inputs since it dynamically computes based on the visual context.
Ensure that your slicer is set up properly:
If the slicer still behaves incorrectly:
Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂
Kind Regards,
Poojara
Data Analyst | MSBI Developer | Power BI Consultant
YouTube: https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS
Hi @Francease04
To address the issue you're facing with your segmentation slicer not working properly, let's take a systematic approach:
Your slicer categorizes players into the following segments based on these conditions:
The slicer should properly filter the data in your visualizations.
The issue might arise from:
From the screenshots (or descriptions of your model), confirm these:
Use calculated columns to segment players based on their Bet, Deposit, and Bonus values.
Create a new calculated column in the Player Table to segment players:
Segmentation =
SWITCH(
TRUE(),
[Bet] > 0, "UAP",
[Deposit] > 0, "w/ Deposit",
[Bonus] > 0, "w/ Bonus",
"No Activity"
)
This column categorizes players based on their first matching condition.
If the Bet, Deposit, and Bonus are calculated using measures, you cannot directly use them in a calculated column. Instead, create a Segmentation Measure:
Segmentation Measure =
SWITCH(
TRUE(),
MAX('Transactions Table'[Bet]) > 0, "UAP",
MAX('Transactions Table'[Deposit]) > 0, "w/ Deposit",
MAX('Transactions Table'[Bonus]) > 0, "w/ Bonus",
"No Activity"
)
Add this measure to your slicer visual. Power BI supports measures as slicer inputs since it dynamically computes based on the visual context.
Ensure that your slicer is set up properly:
If the slicer still behaves incorrectly:
Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂
Kind Regards,
Poojara
Data Analyst | MSBI Developer | Power BI Consultant
YouTube: https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |