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
Anonymous
Not applicable

Seperate rows

Hello, 

 

I want to seperate the tickets that are assigned to someone and thoes who are not. I dont want the name to appear in the Stacked Column Chart. I want the it to be three dirrent stacks: Assigend, Not assigned and Work in progress.

 

Kind Regards,

Albin

 

Assignment.PNGTabel.PNG

2 ACCEPTED SOLUTIONS
Thejeswar
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

Create a new Calculated Column with the following DAX Statement

 

New State = IF('Table'[Assigned To] = "","Not Assigned", 'Table'[State])

The Graph would look like the one below

states.PNG

 

 

The Below is my data for reference

 

StateAssigned To

AssignedABC
Assigned 
AssignedDEF
Work in ProgressGHI
Work in ProgressHUL
Work in Progress 
Work in Progress 
Assigned 

View solution in original post

Anonymous
Not applicable

Hi @Anonymous

Capture.PNG

If this is your requirement then Create a Calculated Measure with the following DAX

State' = IF(Table1[assigned_to]=BLANK(),"Not Assign",Table1[State])

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous

Capture.PNG

If this is your requirement then Create a Calculated Measure with the following DAX

State' = IF(Table1[assigned_to]=BLANK(),"Not Assign",Table1[State])

 

Thejeswar
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

Create a new Calculated Column with the following DAX Statement

 

New State = IF('Table'[Assigned To] = "","Not Assigned", 'Table'[State])

The Graph would look like the one below

states.PNG

 

 

The Below is my data for reference

 

StateAssigned To

AssignedABC
Assigned 
AssignedDEF
Work in ProgressGHI
Work in ProgressHUL
Work in Progress 
Work in Progress 
Assigned 

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.