Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi all, I am a complete newbe to PowerBI.
I have a table with 3 columns, the first one is "id file" each name is different, the second is the date of creation for each of this files,the third one is the date of cloture.
i'd like to make a bar chart that shows by month the number of files created (one bar) and the number of files finished (second bar)
thanks, and sorry for my english
Solved! Go to Solution.
@PTIFANOU OK:
Creation Month = FORMAT([CreationDate],"mmmm")
Cloture Month = FORMAT([ClotureDaate],"mmmm")
Documents Created =
VAR __Month = MAX('Months',[Month])
RETURN
COUNTROWS(FILTER('Table',[Creation Month] = __Month))
Documents Cloture =
VAR __Month = MAX('Months',[Month])
RETURN
COUNTROWS(FILTER('Table',[Cloture Month] = __Month))
Hi,
I suggest having a calendar table like below.
One active relationship and one inactive relationship.
And then use USERELATIONSHIP dax function when using inactive relationship.
Hi,
I suggest having a calendar table like below.
One active relationship and one inactive relationship.
And then use USERELATIONSHIP dax function when using inactive relationship.
@PTIFANOU OK:
Creation Month = FORMAT([CreationDate],"mmmm")
Cloture Month = FORMAT([ClotureDaate],"mmmm")
Documents Created =
VAR __Month = MAX('Months',[Month])
RETURN
COUNTROWS(FILTER('Table',[Creation Month] = __Month))
Documents Cloture =
VAR __Month = MAX('Months',[Month])
RETURN
COUNTROWS(FILTER('Table',[Cloture Month] = __Month))
thanks a lot both of yours solutions works perfectly
thanks fotr ur time and efforts
User | Count |
---|---|
66 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |