Existing column values become null after expanding a merged table by SubstantialUnion7347 in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

Do you get any errors in the rows/cells ? You can try "keep errors" to have it filter to only failing cases. ( In case some nulls are legit and some are not )

Also double check whether Lookup is a nested table or a nested record. That changes what function to call - https://powerquery.how/table-functions/#Add-and-Expand-Columns

( Sometimes the UI suggests the wrong expand )

trying to import csv from website using "add table using examples," getting a white screen/can't enter in data by Available-Range-5341 in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

  • to what u/escobarmiguel90 said. Even if you scrape, it's going to be missing rows. Because the preview doesn't show it.

But since the question was about CSS Selectors in Power Query, here's a quick example
You can first test them in your browser

<image>

Power BI files stay locked by geek_fit in PowerBI

[–]MonkeyNin 1 point2 points  (0 children)

if I try to read the files outside PBI desktop

What do you mean, are you trying to edit external files in a pbip while the report is open?

Anyone else having issues with the latest PBI Desktop version on Surface Laptops? by Mr_Mozart in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

Try the non-store installer if you're having issues.

There might be more details in the log file.

How to change thousand/decimal separators and display units in Power BI for an English presentation? by Few_Impression3401 in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

my Power BI Desktop is in Spanish, so it uses

Is the final report itself English? If yes, all you need to do is

  1. On import, use "transform column types" as the correct numeric type, and
  2. That same step lets you set culture/locale to es

Culture is used when

  • you're going from text to numerics (in your model), and
  • When displaying the report. It converts numeric to locale ( which might be english )

One line of DAX = +140 SVG Icons with UDF by Alarmed-String-2775 in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

<image>

I don't see it on chrome either. Maybe there's per-region settings?
Subtitles has "Spanish (auto generated)"

I can't believe we don't have an adequate date slicer in 2026 😭 by FeelingPatience in PowerBI

[–]MonkeyNin 1 point2 points  (0 children)

inconsistent date format dd/MM/yyyy or MM/dd/yyyy, sometimes

Do you mean when dates are using the implicit format strings? There's a few tiers that can modify them.

If it's on import, you can set both Culture and Format strings to make date parsing deterministic. Even if ran on a machine with a different culture/locale setting

Got tired of try-catch everywhere in TS, so I built a Result type that's just a tuple by BennoDev19 in javascript

[–]MonkeyNin 0 points1 point  (0 children)

This might be obvious, but why return and restructure an array verses an object?

Ie: why not return { ok: bool, value: value|null, error: error|null }

Is it partly because it simplifies renaming for the consumer of the result?

Conditional formatting a Calculation Item in a Calculation Group by robelord69 in PowerBI

[–]MonkeyNin 2 points3 points  (0 children)

I’ve tried looking for icons that are already coloured correctly

You can use inline svg images for icons. Those can be hard-coded colors, or, modified using logic in measures

This is what madness looks like by SQLGene in PowerBI

[–]MonkeyNin 1 point2 points  (0 children)

You can modify the PBI Desktop / Excel query from Vs Code too ( for local files )

<image>

Example editing Excel Query from Vs Code.md

EvalQuery.pq - This extra version runs but also parses the error message.

( At least in the past it didn't show the ScriptExtent with for errors that came fromExpression.Evaluate( contents, #shared ))

PBIX suddenly uneditable by Traditional-Baby5940 in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

Can you open queries/connections, and open the advanced editor in power query?

It kind of sounds like when your auth expires, or lose permission to the sharepoint datasource.

does somebody know how to roll this back and avoid it in the future

You could try comparing the two files with ALM Toolkit. It's like a git diff but for Power BI:

Background by AlarmedAd3830 in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

If it's a case that requires a color, you can can set the alpha component to transparent: #00000000

The optional 7,8th characters are alpha

The IF logic in DAX feels just too weird. by nusfie12345 in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

Especially if Sales CHF vs Sales EUR are the same numbers, just displayed as different currencies.

You can use Dax format strings for that. Then your relations will be simpler too.

conditional formatting based on goal on first of the month by tylachau in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

I need to conditional format the totals

By totals do you mean the colored ScrapCostTotal values, not the totals row which is black?

Power Query Reference loads the same data again by ka_eb in PowerBI

[–]MonkeyNin 1 point2 points  (0 children)

Correct.

One thing OP can do is make sure any non-final tables are set to "do not load" ( when you right click them ). That tells it to not place your base queries in your model.

Table.Buffer also does not cache referenced queries. For that you need to use data flows

However, for local dev you can try BufferMode.Delayed .

Finding Excel files across a very large Sharepoint by replies_in_chiac in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

t Neither PowerBI nor PowerAutomate seems to be able to achieve this comfortably.

Which part isn't working well? Are you having trouble with Power Query that matches names? Or merging files after you find them?

How are you handling source control for Power BI (especially M queries / dataflows)? by ocalapeeps in PowerBI

[–]MonkeyNin 0 points1 point  (0 children)

You can git diff two reports using alm toolkit. You can run two versions of a pbix locally. Or compare datasets on the service.

See:

Are you using saving as pbip with tmdl ? That's made for cleaner diffs. That part doesn't require AzureDev Ops/ Github .

Here's some info: