ssas
54 TopicsHow to Sort Pie Chart Values When Using SSAS Measures?
I’m trying to configure a pie chart so that a specific value appears first. After searching online, it seems the usual approach is to use a custom table or add a column for sorting. Here’s the challenge: my data comes from an SSAS model, and I don’t have permission to modify it. The values are measures that together add up to 100%, which is why they work well in a pie chart. However, since they are three separate measures, I can’t sort them directly. Has anyone dealt with this before? Any ideas on how to proceed without changing the SSAS model?SolvedRow Level Security - SSAS/Report Server
Hi everybody, I have been struggling lately about how I should implement the "RLS" so that it is reflected in the power bi dashboards. In other words, 1- First, I have designed a SSAS project and implemented roles using dynamic rls and also added desired members 2- Then I deployed the project on an Analysis Server database 3- Creating live connection in power bi and designed my dashboard 4- uploaded the .pbix file on the report server (on-premise). 5- Although I have defined rls in ssas visual studio, all users can see all of the information? and this is something that bothers me. Note: I analyzed my SSAS project in Excel and all RLS configs are working like a charm. (RLS in Power bi -> Not ok, Excel -> Ok) Is there anything else that I am missing which leads to this outcome? I greatly appreciate your help. Thanks, KasraSolved2.5KViews0likes9CommentsSSAS model loading ends in memory failure
Hi, I have one SSAS tabular model running on two servers. On one server (call that server 1) the model loads using full-load without an error. On the other server (call this server 2) the SAME model fails on full-load with memory failure. This server (server 2) has way much more memory configured at server level and sql-server level then the server 1. The data is loaded from the same database tables, so the source of the models on both servers is the same. All ssas parameters are the same, the versions are the same. Software version on both servers : SSAS version 15.0.35.51 SQL Server version 15.0.4440.1 Why does the loading fail on server 2 and not on server 1 ? Help is wantedSolved2KViews0likes7CommentsSSAS Tabular Model performance Issue
Hi I have a SSAS tabular model of almost 2 GB size. I refresh it's data using Azure Analysis Service on S1 tier(P.S. I have tried with S2 tier too but it still consume same amount of time) and refresh request is generated through ADF. Earlier it was working fine and refreshing data with 40 mins for all requested partitions. Now someone has added few new DAX measures to my model and since then me refresh time has increased to 3 hours. I want to optimize my model and reduce refresh time. I am only refreshing the relevant data(current data not the historical data). How can I reduce refresh time and optimize my tabular model. I tried reducing the data but still its taking long time to process the data which is not the ideal case. I guess the effectiveness is effected due to any DAX measure addition but still its just a guess. I dont know the method to identify the cause as I have too many DAX measures in my model.1.8KViews0likes3CommentsIdentify DAX Measures consuming too long to process
I have a tabular model on Visual Studio where data size is normal. It use to take 35-40 min to refresh 1 month back but someone added/modified few DAX Measures. Since then it is taking too long too refresh data. I want to indentify measures which are causing this issue. I have used these measures in Power BI reports too. How can I findout these measures so my model can be efficient and start refreshing normally.Solved1.5KViews0likes4CommentsSSAS consume a lot of memory
Hi, I am analyzing why my SSAS server is consume a lot of memory sometimes what i can see it is not when the model is processing. I have run the dmv Memory usage to find what in SSAS service is take all the memory, and we talk about 115GB memory. My model is only 6GB when loaded in memory. The result of running memory usage can you see below. The what i can see from it, it is the OBJECT ID Big and Small the consume all the memory togeheter. So my question is, what is that? And how can i reduce the consume of memory?1.1KViews0likes2CommentsCalculate in measure at column won't filter other objects
Hi! I placed this measure in "values" on a Matrix: measure = CALCULATE(sum(Fact[Totalsum]),Fact[type] = "D") But when i select anything within this matrix it will filter all objects from the model excluding Fact[type] = "D" and showing the absolute total (Measure total is selected) I also tried using SumX but didn't work: measure = SUMX(FILTER(Fact,Fact[type] = "D"),Fact[Totalsum]) Why could this be?757Views0likes2CommentsError: Comparison operations don't support comparing values type Text with Values of Type Number
Hi, I'm new to DAX and need some help, I'm creating a measure in a tabular cube in SSAS. I need to retreive the LastYearLastWeek data from x column: LastYearLastWeek:= CALCULATE([x], FILTER(ALL(Time), Time[WeekNumber] = SELECTEDVALUE(Time[WeekNumber]) -1 && Time[Year] = SELECTEDVALUE(Time[Year])-1)) But I get this error in the syntax: comparison operations don't support comparing values type Text with Values of Type Number. Considering using VALUE or FORMAT functions to convert one of the values. Fields used: WeekNumber and Year from Time table are whole numbers. It doesn't really make sense to me, any tips on how to fix it? Also maybe there is a better way to get LastWeekLastYear, do you know of any? ThanksSolved1.4KViews0likes2CommentsSSAS Live connection - Current Data
Hello, I am new to the analysis service and I have question about live connection. I am using Power BI SSAS Live connection but every time data is updated in the data warehouse, analysis service needs to be processed (deployed) to load the updated date. as far as I know, analysis service is just a data structure and it is not saving information, thus it must always show actual data without the need to refresh, process or deploying. can someone advise me on how to fix this issue? I want to see live data without SSAS database need to be processed.Solved2KViews0likes3Comments