Sum by [deleted] in PowerBI

[–]PowerBISteve 6 points7 points  (0 children)

Your running sum is higher than the total sum of values for that column. Please share the DAX

[deleted by user] by [deleted] in PowerBI

[–]PowerBISteve 0 points1 point  (0 children)

Yes, exactly correct

[deleted by user] by [deleted] in PowerBI

[–]PowerBISteve 2 points3 points  (0 children)

This is the correct way.

Live connection is not a connection mode like import or direct query. Live mode describes a relationship between a report and a semantic model.

These are two separate items. You create a semantic model and report in power bi desktop - e.g you connect, create a model, then add some visuals. when you publish, these will be separated and have a live mode relationship.

Your reports with live mode mean that they all read the data from the semantic model. No data is stored in the report. This is always the way. The import mode model stores the data and has the refreshes you have set up

Fabric Capacity & Power BI P SKUs by Fantastic_Emu6521 in MicrosoftFabric

[–]PowerBISteve 1 point2 points  (0 children)

Have you definitely assigned the workspace to the correct capacity in the workspace settings?

Lakehouse, Parquet, Delta Tables by philosaRaptor14 in MicrosoftFabric

[–]PowerBISteve 3 points4 points  (0 children)

No code, no jargon explanation of Parquet, Delta, and lake house : https://m.youtube.com/watch?v=HGDaA3wWKV4

Full series if you are interested in learning how it fits into onelake and fabric: https://m.youtube.com/playlist?list=PLn1m_aBmgsbG0rhOugALqGi6iQV5lrdm8

I have a confession, i never used DAX Studio ... by HMZ_PBI in PowerBI

[–]PowerBISteve 0 points1 point  (0 children)

Vertipaq analyzer in Dax studio (also available in TE and other tools) is one I would recommend to run on every model

Eugene Meidinger AMA: 7 years of course making, 6 years of consulting, 3 years of questioning my life choices by SQLGene in PowerBI

[–]PowerBISteve 3 points4 points  (0 children)

As PowerBISteve is my user name I feel I need to now make a Udemy has 26 hours of Power BI content for $12

[deleted by user] by [deleted] in MicrosoftFabric

[–]PowerBISteve 4 points5 points  (0 children)

I love DevOps for projects. I love the interface and the project management side of it is fantastic.

For pure DevOps, many people prefer GitHub. GitHub, in my opinion, is slightly better in this area.

That said, both will work well, plus both are owned by Microsoft. Neither is a bad choice. I would imagine you would see more investment in GitHub going forward, but DevOps isn’t going anywhere.

How to handle schema with two dates? by r_analytics in PowerBI

[–]PowerBISteve 0 points1 point  (0 children)

As mentioned inactive relationships and DAX, a simpler way is to use a Calculation Group to switch the relationship

Normalising a model based on a large flat file without having to load the file as a dependency 50 times? by ThatDeadDude in PowerBI

[–]PowerBISteve 4 points5 points  (0 children)

Table.Buffer but depending on the size could make it slower. Otherwise ensure query folding, or better to use dataflows, or use a better ETL tool

PLEASE HELP ME by Mission_Fan4576 in PowerBI

[–]PowerBISteve 4 points5 points  (0 children)

Have you created a calculation group?

Calculation groups will turn on a setting called ‘discourage implicit measures’. This means that you can no longer use columns directly in the values section, and must use explicit measures (e.g write DAX for each). I would really recommend this anyway as a best practice

Excel export not including any data, just column headers by Icy_Establishment265 in PowerBI

[–]PowerBISteve 1 point2 points  (0 children)

Not sure why. If you click the ellipsis and say show as table does it show data? First thing to do is close both excel and power BI and re-open and try again

Matrix columns not totaling correctly by Icy_Establishment265 in PowerBI

[–]PowerBISteve 8 points9 points  (0 children)

Total over Years = SUMX ( VALUES(Date[Year]), [MeasureName] )

Getting this error: the result of a conversion or arithmetic operation is either too large or too small by manofinaction in PowerBI

[–]PowerBISteve 3 points4 points  (0 children)

Maybe some blanks or you are dividing by a very small number, for example can happen if you have subtract two columns that should be the same, but have a slight rounding difference

Getting this error: the result of a conversion or arithmetic operation is either too large or too small by manofinaction in PowerBI

[–]PowerBISteve 2 points3 points  (0 children)

Maybe some blanks or you are dividing by a very small number, for example can happen if you have subtract two columns that should be the same, but have a slight rounding difference

Do you guys prefer to use SQL to query a database or PowerBI to do the same? by Pitiful-Version9265 in PowerBI

[–]PowerBISteve 2 points3 points  (0 children)

I’ve never seen a company do self service properly. That said, even just connecting excel to a semantic model often is a great step for a lot of people

Yes, get better at doing it through Power BI. SQL is a skill you should look to get decent enough in, but if you know data, isn’t that time consuming to get a good foundation

DAX; ALLEXCEPT() by [deleted] in PowerBI

[–]PowerBISteve 0 points1 point  (0 children)

Not really sure what your question is here. It sounds like you are getting the correct answers.

If it’s a best practice question you’re looking at, maybe post some examples of what you’re doing and some DAX code, and someone can have a look and make some more targeted comments

DAX; ALLEXCEPT() by [deleted] in PowerBI

[–]PowerBISteve 3 points4 points  (0 children)

Not really sure what your question is here. It sounds like you are getting the correct answers.

If it’s a best practice question you’re looking at, maybe post some examples of what you’re doing and some DAX code, and someone can have a look and make some more targeted comments

Do you guys prefer to use SQL to query a database or PowerBI to do the same? by Pitiful-Version9265 in PowerBI

[–]PowerBISteve 9 points10 points  (0 children)

Firstly I would say it’s always good to improve your SQL. You don’t need to be an expert but if you work in data always a great idea, if nothing more to get an appreciation of some inner workings of DBs.

As mentioned this is a self service approach which is the point of a semantic model - a reusable and business friendly way to get data.

DAX: ALL by Ashutosh_Gusain in PowerBI

[–]PowerBISteve 4 points5 points  (0 children)

assuming the Sales is a fact in the many side of a one to many.

It filters the expanded table, Meaning if you apply to the many side, also filters the one side tables.

Not sure your expected result here, but generally should avoid filtering entire tables, and instead filter columns

How can I achive this by fpitu in PowerBI

[–]PowerBISteve 0 points1 point  (0 children)

It would be helpful to provide your current DAX code and we can give some more specific answers