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
Suryaann
Frequent Visitor

Creating a conditional column for repetitive sequence

Hi All,

 

I have a table with number and value column.i want to create another table/column to assign 1 to 8 numbers as SET A and 6 to 15 as SET B.6,7,8 are common for both the sets.The purpose of this new column is to have a filter which shows SET A and SET B.While selecting SET A it should show the details of 1 to 8 and for set b it should show the details for 6 to 15.

 

New table

 

 

Kindly help.

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Suryaann 

Create a new table:

 

NewTable =
VAR TabA_ =
    ADDCOLUMNS ( GENERATESERIES ( 1, 8 ), "filter", "SET A" )
VAR TabB_ =
    ADDCOLUMNS ( GENERATESERIES ( 6, 15 ), "filter", "SET B" )
RETURN
    UNION ( TabA_, TabB_ )

then change the name of the first column as desired

 

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @Suryaann 

Create a new table:

 

NewTable =
VAR TabA_ =
    ADDCOLUMNS ( GENERATESERIES ( 1, 8 ), "filter", "SET A" )
VAR TabB_ =
    ADDCOLUMNS ( GENERATESERIES ( 6, 15 ), "filter", "SET B" )
RETURN
    UNION ( TabA_, TabB_ )

then change the name of the first column as desired

 

 

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.