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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Chanleakna123
Post Prodigy
Post Prodigy

Turns All Open Cases to Close on Bar Chart

1.PNG

 

hi team , 

 

i use the status as manual on my file and i used Bar chart by counting the ID . 

My purpose is to visualize , if the Case >30 Days it will show all of the Open Case to Close , but if it's <30 Days , it Remains the Same , show "Close " and "Open" Options . 

how to success on this ? 

1 ACCEPTED SOLUTION

Hi @Chanleakna123

 

It seems you need to create a calculated column and drag it to 'Legend' for your chart. Show a simplified sample here.

ChangeState =
IF (
    DATEDIFF ( Table4[Date], TODAY (), DAY ) <= 30,
    Table4[State],
    IF (
        DATEDIFF ( Table4[Date], TODAY (), DAY ) > 30
            && Table4[State] = "Open",
        "Close",
        Table4[State]
    )
)

1.png

 

Regards,

Cherie

Community Support Team _ Cherie Chen
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

4 REPLIES 4
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Chanleakna123

 

It seems you need to use DATESBETWEEN Function. If it is not your case, please share more about your simplified data sample and expected output. 

 

Regards,
Cherie

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

Hi , 

below is what my expectation : 

 

My purpose is to visualize , if the Case >30 Days it will show all of the Open Case to Close , but if it's <30 Days , it Remains the Same , show "Close " and "Open" Options . 

how to success on this ? 

 

Therefore if the Case still open from Jan to Aug , it will automatically closed , 

because i dun wanna see case open from Jan to Aug , only in september , Due to it will less than 30 days. if it more than 30 days Close automatically.  

Hi @Chanleakna123

 

It seems you need to create a calculated column and drag it to 'Legend' for your chart. Show a simplified sample here.

ChangeState =
IF (
    DATEDIFF ( Table4[Date], TODAY (), DAY ) <= 30,
    Table4[State],
    IF (
        DATEDIFF ( Table4[Date], TODAY (), DAY ) > 30
            && Table4[State] = "Open",
        "Close",
        Table4[State]
    )
)

1.png

 

Regards,

Cherie

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

@v-cherch-msft you're awesome.

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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