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
Karim_Hossam
Employee
Employee

dates on Y axis

Hello,

I am trying to create a tracking report, to show either ticket has been updated in the same date of creation or not, I think about Line chart , but the issue is that I don't know how to present the dates (creation date and updated date) on the Y axes, could someone advise, how I can do this?(I already have this date in excel(ticket ID//creations date//updated date )Screenshot_1.png

as example I want to show creation date instead of 1 and updated date instead of 2(in the below screenshot)

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

Hi @Karim_Hossam,

 

I'm afraid it's hard to do with Power BI native visual. Maybe you can try a R visual. You can try it in this file.

1. Reformat the data.

dates_on_Y_axis

2. Create a R visual.

library(ggplot2)
dataset$Value <- as.Date(dataset$Value, "%Y-%m-%d")
ggplot(data = dataset, aes(x = dataset$"Ticket ID", y = dataset$Value, group = dataset$Attribute)) + geom_line() + geom_point()

dates_on_Y_axis2

 

Best Regards,

Dale

 

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

3 REPLIES 3
v-jiascu-msft
Employee
Employee

Hi @Karim_Hossam,

 

I'm afraid it's hard to do with Power BI native visual. Maybe you can try a R visual. You can try it in this file.

1. Reformat the data.

dates_on_Y_axis

2. Create a R visual.

library(ggplot2)
dataset$Value <- as.Date(dataset$Value, "%Y-%m-%d")
ggplot(data = dataset, aes(x = dataset$"Ticket ID", y = dataset$Value, group = dataset$Attribute)) + geom_line() + geom_point()

dates_on_Y_axis2

 

Best Regards,

Dale

 

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

@Karim_Hossam what does your data model look like?

 

if you want to create a measure against 2 dates you will need to have an active relastionship for one date and an inactive for the other and then use the userelationship dax command, you will also then need to have a calendar table, can you screen shot your model?





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




tets.png

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.