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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
esam
Frequent Visitor

how to create range with data

Hey all,

I have a data with range from 10-100 suppose and I want segregate that data with 5 increment and count the number in that range 

e.g

0-5 -0

5-10 -0

10-15 -11 like this

But I have data starting from 10 only 0-5 range is not present so when I am creating the table 0-5 range is not present

can anyone please guide me how to achieve this ?

1 ACCEPTED SOLUTION
v-xinruzhu-msft
Community Support
Community Support

Hi @esam 

You can refer to the following example

1.Create the calculated table

Table = var a=GENERATESERIES(1,100/5,1)
return ADDCOLUMNS(a,"Range",[Value]*5-5&"-"&[Value]*5)

vxinruzhumsft_0-1686622313969.png

 

2.The example data table

vxinruzhumsft_1-1686622377868.png

 

3.Create the measure

Measure = COUNTROWS(FILTER('Table 2',[Value]>SELECTEDVALUE('Table'[Value])*5-5&&[Value]<=SELECTEDVALUE('Table'[Value])*5))

 

vxinruzhumsft_2-1686622522372.png

 

 

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xinruzhu-msft
Community Support
Community Support

Hi @esam 

You can refer to the following example

1.Create the calculated table

Table = var a=GENERATESERIES(1,100/5,1)
return ADDCOLUMNS(a,"Range",[Value]*5-5&"-"&[Value]*5)

vxinruzhumsft_0-1686622313969.png

 

2.The example data table

vxinruzhumsft_1-1686622377868.png

 

3.Create the measure

Measure = COUNTROWS(FILTER('Table 2',[Value]>SELECTEDVALUE('Table'[Value])*5-5&&[Value]<=SELECTEDVALUE('Table'[Value])*5))

 

vxinruzhumsft_2-1686622522372.png

 

 

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

NaveenGandhi
Super User
Super User

Hello @esam 

Check the attached PBIX. I have recreated the scenario.

 

  • Create the range column.
  • Create the Dim table and establish a relationship.
  • Now use the range from Dim table and count measure to create a table visual. (Dont forget to turn on  "show items with no data" as below.
    NaveenGandhi_0-1686330942478.png

     

Let me know if this helps!

If this post helps, then please consider Accept it as the solution to help the others find it more quickly. Appreciate you kudos!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.