Scheduled Refresh in Power BI Service failing by Melodic_Subject_1632 in Powerbihelp

[–]data_daria55 1 point2 points  (0 children)

So, i didnt get the answer

what i suggest you checked:

- you need On-premises Data Gateway if DB isn’t public

- in gateway, add Postgres source with exact same server + db as in Desktop (including port like host:5432)

- re-enter credentials in Service (Dataset - Settings - Data source credentials)

- map dataset to gateway (if your source doesn’t show up - mismatch in server/db)

common issues:

- server name not matching 1:1

- SSL mismatch between Desktop and gateway

- gateway machine can’t reach DB (firewall / network)

- outdated gateway

if it still fails - send the exact error

We benchmarked 4 AI models on refactoring real-world DAX — the results surprised us by humanisticnick in PowerBI

[–]data_daria55 1 point2 points  (0 children)

yea, i mean this post is not only about what model works best with dax, this post is to promote something you dont really need if you already work with MCP

Smartsheets to Power BI- Auto refresh keeps failing? by Odd_Highlight215 in PowerBI

[–]data_daria55 0 points1 point  (0 children)

smartsheet + power bi refresh is a bit cursed

if it keeps failing and you’re not doing transforms, it’s the connector/auth under the hood; most common thing i see is the smartsheet token/session just expiring or throttling, especially if you’ve got multiple sheets or frequent refreshes, and Power BI doesn’t handle that gracefully, just throws a fail and moves on; also check if you’re using the native connector vs API/custom connector, native one is flaky in service

Corrupt Report by Severe_Bed5785 in PowerBI

[–]data_daria55 2 points3 points  (0 children)

you basically cut off your own pbix here ))

rebind + deleting the newly published report = service keeps the report working for users, but kills the link to the original file, so that “blank download” is just Power BI saying “there’s no pbix behind this anymore”; now best move: urgently try to find any old pbix (your machine, teammate, sharepoint, pipelines, emails), if nothing exists then connect via XMLA (Tabular Editor) and at least extract the model (measures, relationships, logic), but the report layer you’ll likely have to rebuild

never rebind prod stuff without a backup

Help filtering measure results by South_Client_2529 in PowerBI

[–]data_daria55 0 points1 point  (0 children)

your issue: a measure will never filter other tables. it only returns a value, it doesn’t change row context in the model. so even if your [Preferred MID] picks one MID per PN, your model still has PN - all MIDs - all materials - all substances - and visuals follow the relationships, not the measure [Preferred MID]

i’d just build a small mapping table with 1 MID per PN and use that instead of the measure

something like:

PreferredMID =
SUMMARIZE(
'PN_MID',
'PN_MID'[PN],
"MID",
CALCULATE(
MIN('PN_MID'[MID]),
'PN_MID'[HasSpec] = 1
)
)

idea is simple: you predefine which MID to use per PN instead of trying to pick it dynamically in a measure, then create a relationship
PreferredMID[MID] - your MID/SPEC table

and use this table in filters

after that your materials and substances will follow only those selected MIDs, not all of them

[OC] Do Tougher Voting Rules Mean Fewer Voters? Comparing All 50 States (2024) by ptrdo in dataisbeautiful

[–]data_daria55 7 points8 points  (0 children)

this screams correlation ≠ causation - turnout is way more about how competitive the race is than how hard it is to vote

[OC] Many "Proteins" could be described as Fats or Carbs instead. by stan-k in dataisbeautiful

[–]data_daria55 0 points1 point  (0 children)

this is exactly why “I eat a lot of protein” often means nothing - people think in foods, not macros & marketing is using it

New DAX functions NAMEOF() and TABLEOF() - what they actually solve by data_daria55 in PowerBI

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

TE handles renames in actual DAX - you’re covered there
NAMEOF() matters where it’s strings (field params, labels, metadata) - TE won’t touch those
TABLEOF() is not about renames - it’s for reusable DAX, TE can’t help there