powerbi

Custom matrix header

妖精的绣舞 提交于 2020-08-10 18:15:25
问题 I need to create a custom header like the picture below: I check this link Custom aggregate column in power bi matrix But I don't undestand how to do the same to my case? Edit I try to create calculated table but I didn't get the data for dim5 and dim6, how can I modify it? Edit Dim_prduit My problem is how to dispaly Nombre product , and then like hierarchy dim5 then dim6 in the header? 回答1: It's ugly but you can write a header table like this and then define a switching measure based on the

how to group the values in power bi?

霸气de小男生 提交于 2020-08-10 07:58:13
问题 I am trying to create a power bi replicating the tableau report. In tableau, it automatically group the values when we place the columns in rows pane. But in Power BI, I am not able to group the exact same way of tableau report. Please help me how to group the values in report pane of power bi. I have tried table and matrix visualization but I am not getting the same view like tableau Need to create the same visuals like tableau report. Attached images 回答1: As mentioned in this post, there is

how to group the values in power bi?

旧城冷巷雨未停 提交于 2020-08-10 07:55:02
问题 I am trying to create a power bi replicating the tableau report. In tableau, it automatically group the values when we place the columns in rows pane. But in Power BI, I am not able to group the exact same way of tableau report. Please help me how to group the values in report pane of power bi. I have tried table and matrix visualization but I am not getting the same view like tableau Need to create the same visuals like tableau report. Attached images 回答1: As mentioned in this post, there is

Can I save my R output (.jpeg) to an FTP server?

夙愿已清 提交于 2020-08-08 13:51:08
问题 (optional read) Greater Objective: PowerBI Web doesn't support a few R packages when published on the internet. It throws the below error ("Missing R Package"). Hence, I am working towards saving the output from R as an image (.jpeg) to a remote location ( such as FTP ) or cloud storage (secure and open source) and then import it to PowerBI. This workaround might resolve the package conflict ( hoping ). Specific Objective *: The below code illustrates a trivial way of saving an R output(.jpeg

DAX to Test for Whole Number

荒凉一梦 提交于 2020-08-08 06:49:51
问题 I have a Actuals column like so: ID | Airport ------------ A | 98.4 B | 98.0 C | 95.3 I'm attempting to format the numbers above into percentages for a front-end report. I have this written in a switch statement - for ease I'll just write the logic as an IF boolean. example_measure = VAR Nums = SELECTEDVALUES(Table[Actuals]) VAR FormatNums = IF(DIVIDE(ROUND(nums,1), nums) = 1, format(nums,"0%"),format(nums,"0.0%") - RETURN FormatNums no matter what I do this always returns a number with a

Is there any way to invoke PowerQuery/M outside of Excel or PowerBI?

扶醉桌前 提交于 2020-08-02 06:08:49
问题 Our BI team is really growing to like the Power Query ETL tool used within Excel and Power BI. The functional language M/PowerQuery has great utility and it would be nice to be able to utilize outside of the context of PowerBI. Is there or are there plans for exposing "M" as a stand-alone module, callable form the likes of c# or PowerShell? 回答1: It appears that this is now possible via the Power Query SDK. This has enabled projects such as PowerQueryNet, which can already execute the M

Power BI Dynamic Legend

a 夏天 提交于 2020-07-31 08:00:19
问题 I'm working with a geographical hierarchy. I'd like for the Legend on my line or ribbon chart to show the next lowest relevant level of detail based upon a slicer selection. GOAL: No Slicer Selection yields a Regional Chart (lines for Southeast, Northeast, etc). Select "Northeast" Region from Slicer yields a State Chart (lines for Maine, New Hampshire, etc.) Select "Maine" State from Slicer yields a County Chart, and so forth. I can do this in a Card using a combination of HASONEVALUE and

Convert comma separated text to a list of numbers

允我心安 提交于 2020-07-30 11:15:25
问题 In Power BI, I have created a DAX query created with a var giving comma-separated text using CONCATENATEX function. Output like Var = "1,2,3,4,5,6" Now I want to search this var into my table column with syntax Table[col] in {var}. It is throwing an error. I even tried converting the column to string with syntax Convert(table[col], string) in {var} The error is removed but the data doesn't match with column data. 回答1: I found this Power BI community thread that is essentially the same

Convert comma separated text to a list of numbers

爷,独闯天下 提交于 2020-07-30 11:15:17
问题 In Power BI, I have created a DAX query created with a var giving comma-separated text using CONCATENATEX function. Output like Var = "1,2,3,4,5,6" Now I want to search this var into my table column with syntax Table[col] in {var}. It is throwing an error. I even tried converting the column to string with syntax Convert(table[col], string) in {var} The error is removed but the data doesn't match with column data. 回答1: I found this Power BI community thread that is essentially the same

How can I create a new table of data in Power BI from a different query that updates daily?

拥有回忆 提交于 2020-07-28 04:57:21
问题 I have a SQL execute function generating a simple table on Power BI. This table updates when there is a refresh with the latest data, which is good. I was wondering if there was a way to create a new table in power BI that is the historical data from the SQL query? The idea would be the original query updates at a set time everyday, and then that data gets copied and appended to a second table with a timestamp so over time I will have historical data of the original executed SQL function. Is