need
7 TopicsConvert date in date type, not string
Hi guys, i try to use report builder but i have some problems with data type. I've this query When i try to filter date (for example date >= 01/01/2024), I can't to do this because it convert data in string. In power bi the field is date type, not string. How can I convert the column in date type? Thank you all 🙂1.1KViews0likes3CommentsEvolution rate only for common months
Hello guys, I'm trying to display an evolution rate which compares datas over 2 years. BUT, I only want common months to be part of the calculation. (In 2022, I have datas for 6 months, and in 20221 I have datas for 5 months). I just want my measure to calculate the rate between the 5 common months. Here is an extract of my data. And here is my DAX measure : Rate N /N-1 = divide ( sum('file'[Data N])-sum('file'[Data N-1]),sum('file'[Data N-1]),"NA") Of course, I want to be able do display my charts for each year, using a slicer for years. Can someone give me the solution please ? I'm sure it's not that difficult ! Thans a lot !Solved1.5KViews0likes7CommentsBring data only to the present day
Hi All! I have a Divide DAX that divides the money by date And so I get an excellent daily average. I connect Keepfilters to it of a date To bring me only up to the date of the present day Now I'm in trouble My data does not always reach the present day Sometimes the current day is the 18th of the month and the data is only updated until the 12th of the month. What happens is that the formula divides the money by 18 instead of 12 and that's how I get a wrong average I try to solve this with Values but always in the current month I have minus money on the 31st of the month The right thing to do is: To bring data by the day they arrive at DB how do I do it? Please save me I've tried everything already This is the formula that works for me right now: Net USD AVG = CALCULATE( DIVIDE( SUM( 'DB 2022'[Net USD] ), COUNTROWS( 'Date' ) ), keepfilters('Date'[Date] < TODAY()))Solved1.6KViews0likes6CommentsReturn values for the last date available
Hi everyone, I am making a report with the following tables: ProjectList Project ID Project name Project Owner 1 Project X John Doe 2 Project Y Jane Doe And StatusUpdates Project ID Date Update 1 20/11/2021 Fixed issue 1 2 22/11/2021 Fixed issue 2 1 21/11/2021 Fixed issue 3 2 24/11/2021 Fixed issue 4 "ProjectList" filters "StatusUpdates" based on the column "ProjectID". I essentially imported the first table as a table in my report, and I would like to achieve that by clicking on one of the values in that table, it returns the string value in the column "Update" of the table "StatusUpdates" of the latest date. So essentially, when you would click on project 1 in the table, it would return the value "Fixed issue 3" on a card, which is the third record in the second table. I already tried with SELECTEDVALUE() but I'm not able to fix the issue. Can someone help me?Solved1.9KViews0likes8CommentsDax query it's really imp nd urgent for me
hi can some one help me with this it is really very imp nd urgent for me https://drive.google.com/file/d/1BmG-flA6TE0v_sbka6rRtY0Aa2h8EsVT/view?usp=sharing i am using the below formulas to display my data for past 2 months nd current month based on month slicer selection but i am unable to view my data. can someone help me with dax query or a offset may also work to display my data. R.SLA% 1 = CALCULATE ( [M.SLA%], FILTER ( 'Query1', 'Query1'[Call Closed].[MonthNo] <= [month name] && 'Query1'[Call Closed].[MonthNo] >= [month name] - 2 && 'Query1'[Call Closed].[Year] = YEAR ( TODAY () ) ) ) M.SLA% 1 = CALCULATE ( [M.SLA%], FILTER ( 'Query1', 'Query1'[Call Closed].[MonthNo] <= [month name] && 'Query1'[Call Closed].[MonthNo] >= [month name] - 2 && 'Query1'[Call Closed].[Year] = YEAR ( TODAY () ) ) )Solved1.1KViews0likes3Comments