User Profile
Broly
Frequent Visitor
Joined 3 years ago
User Widgets
Contributions
Get value from another row in filtered table
Hi, I have a table that looks like this : I have applied a bunch of filters on it : status = "a" or "b", date1= between 1 jan 2023 to 31 jan 2023, date2 = 1 jan 2023 and know it looks like this : For each ref that I have in the filtered table, I want to know if that ref exist in "c" status in the unfiltered table. in this example it would look like this : I tried to create a measure that counts the number of ref using calculate with "removefilter()" But I keep having duplicate. How can I write a measure that keeps the filtered table as and tells if the ref exist in the whole unfiltered table ? Would really appreciate your help thanks472Views0likes1CommentDirectQuery with SSAS
Hi, I'm trying to connect to SQL Server Analysis using Direct Query. From what I've read online it seems like it's not possible. But I think it's possible since I'm using a report that does it : connection settings : My question is how can I do this please ? ThanksSolved5.9KViews0likes5Comments- 585Views0likes0Comments
Text Value previous day
Hi, I have a table with ID, a text (supply scheme) and a date column that comes from a Date table : ID SupplyScheme Date 123 ABC 11/16/2022 1234 ABC 11/16/2022 12345 ABC 11/16/2022 123 ABC 11/15/2022 1234 ABC 11/15/2022 12345 EFG 11/15/2022 What I currently display is a table visual that shows today's data (just a filter onthe date column to only get today's data) like this : ID SupplyScheme Date 123 ABC 11/16/2022 1234 ABC 11/16/2022 12345 ABC 11/16/2022 Now what I want is to know what was the supply scheme yesterday by creating a measure (I'm in live connection). So something like this : ID SupplyScheme Date supplyscheme yesterday 123 ABC 11/16/2022 ABC 1234 ABC 11/16/2022 ABC 12345 ABC 11/16/2022 EFG Is there an simple way to achieve this ? thanks in advanceSolved637Views0likes2Commentsprevious day on text
I have a table as follow : Please keep in mind that I dont have a date column in the table but I use a date table. I want to create a measure to get the previous day supply scheme. When I use the "previousday()" function to get the previous day quantity, it works fine. I actually use this formula and it works fine as well : Qty previousday = CALCULATE(SUM(Table[quantity),FILTER ( ALL ( 'Date Table' ), 'Date Table'[Date] = MAX('Date Table'[Date]) - 1 )) Problem is now I want to get the previous day supply scheme. Any easy way of doing this ? Thanks for you help1.1KViews0likes5Commentscompare values in different rows
I have a table that contains sales informations. each sales id contains a product with quantities. the data is historized thanks to a column containing the dates (note that this column in an integer and not date column). What I want is a table that will show the difference between today and yesterday. Like this : The date is from a live connection. How can I do this using DAX ? thanksSolved618Views0likes1Comment
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.