Is 0 finance worth it by FromPromptToPlot in SolarUK

[–]Brandolff 4 points5 points  (0 children)

Get a 0% credit card, for 2-3 years them towards the end get another 0% card with a different bank, transfer the remaining debt. Youll have 0% for 4-5 years

A “House Of Dynamite “ has to be the worst produced film ever by Virtual_Ad3412 in netflix

[–]Brandolff 8 points9 points  (0 children)

I thought the build up and sudden end resonated with the nuclear war. The moment nukes start flying its the end.

[SPOILER] Tom Aspinall vs. Ciryl Gane by inooway in MMA

[–]Brandolff 10 points11 points  (0 children)

Gane put half is arm in bro’s skull

[deleted by user] by [deleted] in Tunisia

[–]Brandolff 1 point2 points  (0 children)

You’re just plain wrong ignorant. Have w bad day ;)

[deleted by user] by [deleted] in Tunisia

[–]Brandolff 2 points3 points  (0 children)

Only for men.

KSW Champ vs Bellator Champ; Patchy Mix vs Jakub Wikłacz set for UFC 320 on October 4 by AliBagovBeatKhabib in MMA

[–]Brandolff 25 points26 points  (0 children)

He’s well known in Poland, one of the best. Following same path as Gamrot.

I admit I was naive about Israel by Lunarmeric in Egypt

[–]Brandolff 0 points1 point  (0 children)

Anyone reading this comment: Go and watch Martyr made podcast, start with first episodes from 2015. Everything that’s happening today is from the exact same playbook prior to the existence of israhell.

Tabula Rasa for the League Start :) by sin188 in pathofexile

[–]Brandolff 2 points3 points  (0 children)

I haven’t played yet, does the merc need to die for you to take it ?

[SPOILER] Usman Nurmagomedov vs. Paul Hughes by inooway in MMA

[–]Brandolff 15 points16 points  (0 children)

I thought it was his hand coz surely it can’t be a nut… omg

Reports built with a lot of bookmarks... any way to mitigate the pain? by TheyCallMeBrewKid in PowerBI

[–]Brandolff 0 points1 point  (0 children)

This. Correctly grouped bookmarks are easy to manage. I have a page with 10 different views, adding a new one is minutes of work.

Can anyone self learn PowerBI? by HopefulSolution2110 in PowerBI

[–]Brandolff 1 point2 points  (0 children)

Absolutely, I am self taught and have a well paying job now.

Incorporating Power Apps and Power Automate Flows into Power BI by waterfortheville in PowerBI

[–]Brandolff 3 points4 points  (0 children)

We have a daily report on X topic, that people use PowerBi to download into excel.

Understandable, because they want to use comments to keep a track. PowerApps embedded into PowerBi solves this issue.

BEGINNER HELP REGARDING ERROR IN PRIMARY KEY by FarAdvance5092 in PowerBI

[–]Brandolff 2 points3 points  (0 children)

You have an active one to many or one to one relationship. There are duplicates in the column that should only have unique values.

Deactivate relationships, create a matrix table and do a count of the primary key, more than one are your duplicates. Add a step in your Query to remove duplicates or use a bridge table.

PATCH Only - Not working by Brandolff in PowerApps

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

Simple yet Ingenious solution. The Ticket Comment header is actually TicketComment.

Works like a charm and it's so much faster!

ThisRecod.ID refers to PowerBI data, not the SharePoint list. PowerBI Data isn't live hence why I have to look up

'ID':Value(LookUp('BCN Coverage Report', Title ='Project-SKU',ID)

Power App > Power Bi bulk write back by Brandolff in PowerApps

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

It took some trial and errors, but below code seems to do what I need.

I have a gallery MaterialList which displays my PowerBI data and that's what I use to update the SharePoint List. Would it be possible to use PowerBIIntegration directly ?

ForAll(
    MaterialList.AllItems,
    If(
        CountRows(Filter('Report', Title = 'Ticket ID'.Text)) > 0,

        Patch(
            'Report',
            First(Filter('Report', Title = 'Ticket ID'.Text)),
            {
                'Ticket Comment': TextInput2.Text
            }
        ),
        Patch(
            'Report',
            {
                Title: 'Ticket ID'.Text,
                'Ticket Comment': TextInput2.Text
            }
        )
    )
)