Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Dear Community,
I have a working measure, which is as follows:
Hi @Orstenpowers ,
I want to validate the valuable input provided by @jgeddes and @samratpbi . Their initial thoughts helped guide my approach. However, I noticed that more details are needed to fully understand the problem.
1. create parameters.
2. create measure.
Measure =
RIGHT(LEFT(MAX('Table'[value]),'Parameter'[Parameter Value]),1)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous !
Dear Clara, Thank you very much for your input!
Your parameter and measure works perfectly! Thank you!
However, my request goes somewhat beyond that. Please have a look at the below screenshot. My final and required result would be to see the results of column "Measure" as selectable values for a separate slicer. Looking at this screenshot, the slicer should contain the values 0, 1, 4 and 6.
Did I explain it understandable?
Hi @Orstenpowers ,
You can try using filters on the right hand side of the report to select the appropriate filter to display the desired value.
Also, if you want to use measure as slicer value, you can refer to this solution: Solved: How to use a measure as slicer? - Microsoft Fabric Community.
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-kaiyue-msft !
I tried to transfer the measure you provided into the proposed solution at Solution for "How-to-use-a-measure-as-slicer" .
Obviously, I am not skilled enough.
May I ask you to please assist/ tell me what I need to do?
Hi @Anonymous ,
Thanks for your response!
I will check the link that you provided. Hopefully I get the slicer solution started...
If not, I would come back to you. 🙂
Hi @Anonymous !
I tried to transfer the measure you provided into the proposed solution at Solution for "How-to-use-a-measure-as-slicer" .
Obviously, I am not skilled enough. 😔
May I ask you to please assist/ tell me what I need to do?
Hi @v-kaiyue-msft !
I tried to transfer the measure you provided into the proposed solution at Solution for "How-to-use-a-measure-as-slicer" .
Obviously, I am not skilled enough.
May I ask you to please assist/ tell me what I need to do?
Hi,
you need to generate a series using Fields parameter first.
Modeling -> New Parameter -> Fields. Generate the fields parameter with min 1 and max 32.
Now, in the measure you use the measure generated which is:
Series Value = SELECTEDVALUE('Series'[Series], 1)
Now, use this Series Value measure to decide your trim characters.
I created a sample measure to test:
If this resolves your problem, then please mark it as solution, Thanks!
Hi @samratpbi,
Thanks for your proposal! After adjusting it slightly, it brings the expected result with your sample text, which is great. 👍
Now it is as follows:
As an example you could use the measure
Extracted Text =
LEFT(
SELECTEDVALUE('Table'[Column1]), //The column that contains the text to be manipulated
SELECTEDVALUE(Digit[Digit]) //The value selected from the slicer
)
to get a result of
from the tables
Column1
Proud to be a Super User! | |
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
74 | |
73 | |
56 | |
38 | |
31 |
User | Count |
---|---|
83 | |
64 | |
63 | |
49 | |
45 |