Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 )
as example I want to show creation date instead of 1 and updated date instead of 2(in the below screenshot)
Solved! Go to Solution.
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.
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()
Best Regards,
Dale
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.
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()
Best Regards,
Dale
@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?
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |