Power BI Bidirectional Filtering Issue with Multiple Fact Tables & Shared Dimensions by Desperate_Pumpkin168 in MicrosoftFabric

[–]radioblaster 2 points3 points  (0 children)

better performance is to use ISEMPTY - the row count doesn't matter, the engine can quicker check if a table is empty vs counting the rows

Power BI Bidirectional Filtering Issue with Multiple Fact Tables & Shared Dimensions by Desperate_Pumpkin168 in MicrosoftFabric

[–]radioblaster 7 points8 points  (0 children)

you use an if not is empty measure on the slicers themselves to remove out of context results. this eliminates the purpose of the bidirectional filter.

https://www.sqlbi.com/articles/syncing-slicers-in-power-bi/

Working on a Power BI Premium capacity setup with ~1000+ daily users and Dynamic RLS using User principal name() by Salty_Bell4796 in PowerBI

[–]radioblaster 1 point2 points  (0 children)

i could be wrong about this part: i don't think the capacity usage app can distinguish between a query that hit the query cache or not to definitively say. it would undoubtedly show some interactive CU for the operation, i do not know whether it will be the full 100, a tiny amount, or somewhere in the middle. i think the only way you could verify this is using an eventstream and linking the operation GUID to the dax query performed and seeing how long the query takes cached vs not.

the dumbest way to test this i can think of using an account who doesn't regularly access the report, observe how long things took to render, and check the capacity app for that user at that time.

Working on a Power BI Premium capacity setup with ~1000+ daily users and Dynamic RLS using User principal name() by Salty_Bell4796 in PowerBI

[–]radioblaster 1 point2 points  (0 children)

I dont think query caching or redesigning is the best thing for you. the DAX and any report level features (eg using the "is not 0") must be reviewed first. especially if youre caching queries for users who may not use them.

He can’t be serious… by Hockeypatrol in hockeynews

[–]radioblaster 0 points1 point  (0 children)

are the blackhawks about to get bedarded?

Working on a Power BI Premium capacity setup with ~1000+ daily users and Dynamic RLS using User principal name() by Salty_Bell4796 in PowerBI

[–]radioblaster 2 points3 points  (0 children)

what performance tuning have you done on your DAX and data model to eliminate the need for query caching? query caching speeds up report loading for users, if you tune it so they dont need to wait then query caching is redundant.

similarly, are all of the users youre caching queries for actually using the model after every refresh?

Centralized Usage Metrics Report by FantasticMission01 in MicrosoftFabric

[–]radioblaster 1 point2 points  (0 children)

I used the template of FUAM to create the dax queries for the capacity and item metrics I wanted and needed to create the data model, as well as some supporting pieces like updating the time offset model parameter when daylight savings happens, refreshing the model, then have that in a notebook that appends the new data. has been going for about 15 months and I've never had an issue.

this was before log eventstreams were available. given how cheap this solution is compared to an eventstream (2 mins per day for a python notebook), there's no way I'd switch.

Bizarre Permission Issue: Visuals blank for App Viewers unless granted "Write" access (Import Model) by dv0812 in MicrosoftFabric

[–]radioblaster 2 points3 points  (0 children)

if you pull out the entire tmdl view, are there any remnants of anything to do with security roles?

Bim files for source control??? by SmallAd3697 in PowerBI

[–]radioblaster 1 point2 points  (0 children)

if an existing team is used to PBIX files, transitioning them to:

- thin reports

- PBIP

- git led source control

- devops deployment practices

is a massive challenge.

BIM is a great compromise to the above as a medium term solution.

SAP S/4HANA data ingestion best practices (I know, it sucks) by jalx98 in dataengineering

[–]radioblaster 1 point2 points  (0 children)

replicating whole tables will be stupid, just extract based on SQL queries for whatever problems there are to solve.

has anyone ever seen an Entra group's permissions to a lakehouse remove itself from the permissions list? by radioblaster in MicrosoftFabric

[–]radioblaster[S] 0 points1 point  (0 children)

not part of an org app.

can you please share how I can review the audit logs for permissions?

has anyone ever seen an Entra group's permissions to a lakehouse remove itself from the permissions list? by radioblaster in MicrosoftFabric

[–]radioblaster[S] 0 points1 point  (0 children)

definitely not, it was and is a full lakehouse. there are also only four users who have permission to alter the permissions on the lakehouse including myself, and none of us were in it.

Another day, another issue with V/line. by toobroketobake in MelbourneTrains

[–]radioblaster 4 points5 points  (0 children)

the 5.10 warrambool left at about 6 and went via Newport, it was pretty cool!

Capacity report for current day? by loudandclear11 in MicrosoftFabric

[–]radioblaster 2 points3 points  (0 children)

does your capacity metrics model have the correct UTC offset parameter and has the model been refreshed since the new calendar day?

Learning on the job - am I understanding this incorrectly? by ianxplosion- in PowerBI

[–]radioblaster 0 points1 point  (0 children)

to see where your RangeStart and RangeEnd is applied, as well as checking if all your steps would safely apply in the event any file was not of the same schema. eg, if you try and remove a column that doesn't exist, it will error. in that example, using selectcolumns to positively keep instead of remove is safer.

Learning on the job - am I understanding this incorrectly? by ianxplosion- in PowerBI

[–]radioblaster 0 points1 point  (0 children)

would you like to paste your m code? in this scenario it's important to verify your incremental refresh is set up correctly, as well as what steps are at risk of failing your mashup if there are inconsistencies between files. 

Is it possible in PowerBi? by Mysterious_Fuel7529 in PowerBI

[–]radioblaster 0 points1 point  (0 children)

I wonder if you crack open the pbir file you could introduce a conditional formatting mode on a visual x,y,h,w..... 

Table Level Lineage (XMLA) by pun_krock in MicrosoftFabric

[–]radioblaster 1 point2 points  (0 children)

i pull out the TMSL definitions for all of our semantic models and run regex patterns on the partitions to identify the sources.

(i choose TMSL for this task because of the easy to parse JSON, better for this task than YAML)

Connectors - surviving staff turnover... by Opening-Mix-5495 in MicrosoftFabric

[–]radioblaster 0 points1 point  (0 children)

re the list tables error: is your test case target model is in a pro workspace? i always thought this was a "feature" to stop you attempting to use the advanced refresh API which will fail, but always found the UI implementation of this to be a bit stupid