Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
JackR07
New Member

Multiple different parameters into Single graph

Hi,

 

I am trying to figure out a way to input three different parameters into 1 single linear graph for the output. Currently, I have three separate graphs that generate 1 output, but I want 1 single linear graph with all three parameters imported and combined to produce the output. 

 

Any help would be appreciated. 

3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@JackR07,

 

The requirement is not very clear. You can implement a measure using parameters by using SELECTEDVALUE.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Yes - However in PowerBI I have 3 graphs 3 Parameters - I want to use 1 graph for all 3 parameters so that 1 graph is producing the output of 3 parameters instead of having 3 graphs with each parameter assigned to each one

Try this:

 

1. Create a table using : GENERATESERIES(1, 3, 1).

2. Assign Parameter Title to each number:  Param_Type = SWITCH(Type[TypeNo], 1, "Price", 2, "Weight", 3, "Volume").

3. Create one Measure:

    Param=   IF(SELECTEDVALUE(Type[Param_Type])="Price", [Price],
           IF(SELECTEDVALUE(Type[Param_Type]) = "Weight", [Weight],
               IF(SELECTEDVALUE(Type[Param_Type]) = "Volume", [Volume] ,  [Price]  ) )
4. Use this PARAM as the value into your graph.
 
 
 
Shishir Goel
 
 
**Please Mark it as Solution, if works for you**
 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.