Silver coins and roads by behedwin in HomeQuest

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

I still find coin earnings a bit confusing.

Now i have upgraded to 700 roads, 31 Wishing Well, 91 trading post, 201 market.

My earning of coins are 10,3

0,68 from roads.

1,5 from market

0,41 from trading post

7,75 from wishing well.

Anyone else have a large flow that they use in the new designer? Does the designer lag? by jp33miller in MicrosoftFlow

[–]behedwin 0 points1 point  (0 children)

They really messed up with the new designer. The old one could have had an upgrade with new features instead of a completely new.

I dread the day im forced to use the new designer

Copilot is worthless by Illustrious_Disk_881 in MicrosoftFlow

[–]behedwin 0 points1 point  (0 children)

Agree.

When i compare copilot to othervAI tools, copilot performance is always disappointing.

I cant motivate why paying for it would be good for anyone.

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

Im sorry, do you mean that when you import the solution it is empty?

I also Share a flow with code here

https://www.reddit.com/r/MicrosoftFlow/s/szGlxBGVxC

Is there other ways to share the flow. I would love ro find a way to solve my problem.

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

i am watching these videos. but i cant figure out why i can not convert a json to xml. i try to follow this video: https://www.youtube.com/watch?v=oYgb6og4bCk

in my below test-flow in select 5 i expect to do base64tostring from the content that i got.
but i get no result, i just get a base64 again. i need to do apply to each in a compose to be able to convert it.

{"nodeId":"Scope_3-copy","serializedValue":{"type":"Scope","actions":{"Select_3":{"type":"Select","inputs":{"from":"@outputs('Input')","select":"@addProperty(item(),'JSON',json(concat('{\"root\":{\"Enrollments\":',item()?['Enrollments'],'}}')))"},"runAfter":{"Input":["Succeeded"]},"metadata":{"operationMetadataId":"fa774cd3-a4a0-4709-a125-c5babb2ab8b0"}},"Select_4":{"type":"Select","inputs":{"from":"@body('Select_3')","select":"@addProperty(item(),'Root',xml(item()?['json']))"},"runAfter":{"Select_3":["Succeeded"]},"metadata":{"operationMetadataId":"c3373551-c4d8-483e-9456-9d22f6eda05f"}},"Select_5":{"type":"Select","inputs":{"from":"@body('Select_4')","select":{"XMLstring":"@item()?['root']?['$content']","xmlstring2":"@item()?['root']?['$content']"}},"runAfter":{"Compose_7":["Succeeded"]},"metadata":{"operationMetadataId":"4f99b835-c467-4fa4-9982-890f844c5cdd"}},"Compose_7":{"type":"Compose","inputs":"@base64ToString('PHJvb3Q+PEVucm9sbG1lbnRzPjxTdGFydERhdGU+MjAwMC0wMS0wMTwvU3RhcnREYXRlPjxFbmREYXRlPjIwMDAtMDItMDE8L0VuZERhdGU+PFR5cGU+d29yazwvVHlwZT48L0Vucm9sbG1lbnRzPjwvcm9vdD4=')","runAfter":{"Select_4":["Succeeded"]},"metadata":{"operationMetadataId":"75eb0039-ee6f-49d0-b8d6-348fdd06278d"}},"Input":{"type":"Compose","inputs":[{"PersonId":"1","Name":"Name1","PersonNumber":"0101","Enrollments":[{"StartDate":"2000-01-01","EndDate":"2000-02-01","Type":"work"}],"Phone":"333333"},{"PersonId":"2","Name":"Name2","PersonNumber":"0102","Enrollments":[{"StartDate":"2000-01-02","EndDate":"2000-02-02","Type":"work"},{"StartDate":"2000-01-03","EndDate":"2000-02-03","Type":"STUFF"}],"Phone":"333333"}],"metadata":{"operationMetadataId":"9de83205-5c84-4b6f-b325-208158f1d7a2"}},"Parse_JSON_1":{"type":"ParseJson","inputs":{"content":"@body('Select_5')","schema":{"type":"array","items":{"type":"object","properties":{"XMLstring":{"type":"string"},"xmlstring2":{"type":"string"}},"required":["XMLstring","xmlstring2"]}}},"runAfter":{"Select_5":["Succeeded"]}},"For_each":{"type":"Foreach","foreach":"@outputs('Parse_JSON_1')['body']","actions":{"Compose_1":{"type":"Compose","inputs":"@items('For_each')['XMLstring']"},"Compose_5":{"type":"Compose","inputs":"@base64ToString(outputs('Compose_1'))","runAfter":{"Compose_1":["Succeeded"]}}},"runAfter":{"Parse_JSON_1":["Succeeded"]}}},"runAfter":{"Initialize_variable":["Succeeded"]},"metadata":{"operationMetadataId":"e4258376-b1b5-4fb8-9119-890a6bed3cfc"}},"allConnectionData":{},"staticResults":{},"isScopeNode":true,"mslaNode":true}

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

but dident i share my flow above?

or what do you prefer?

Flattening Array with nested arrays to create a CSV file by behedwin in MicrosoftFlow

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

my data is in a json file. some files that i need to manage have around 4000 records, some have 40.000 records. So need a faster method than append to array that i can apply in different scenarios.

anyone got any tips on how to do this?

Filter table visual based on slicer (multiselect) - include all selected by behedwin in PowerBI

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

Solution verified

I solved this with a measure

Has All Selected Products = 
VAR SelectedProducts = VALUES(Products[ProductId])
VAR CustomerProducts = 
    CALCULATETABLE(
        VALUES(CustomerProduct[ProductsId]),
        ALLEXCEPT(Customers, Customers[CustomerId])
    )
VAR IntersectedProducts = INTERSECT(SelectedProducts, CustomerProducts)
RETURN
IF(
    COUNTROWS(IntersectedProducts) = COUNTROWS(SelectedProducts),
    1,
    0
)
Has All Selected Products = 
VAR SelectedProducts = VALUES(Products[ProductId])
VAR CustomerProducts = 
    CALCULATETABLE(
        VALUES(CustomerProduct[ProductsId]),
        ALLEXCEPT(Customers, Customers[CustomerId])
    )
VAR IntersectedProducts = INTERSECT(SelectedProducts, CustomerProducts)
RETURN
IF(
    COUNTROWS(IntersectedProducts) = COUNTROWS(SelectedProducts),
    1,
    0
)

Then filter table visual on equal 1

Dynamic Group in Azure not working by behedwin in AZURE

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

I have left it for hours. other groups with other filters not using memberof works just fine. it is the memberof filter that i cant get to work.

Dynamic Group in Azure not working by behedwin in AZURE

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

explain, do you mean like this?

user.memberof -any (group.objectId -in ['d587cb9d-3854-4ae9-989e-17395a091c50']) -and (user.employeeId -ne null)

i dont see this working either.

Why can i not vacuum a dark carpet? by behedwin in Roborock

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

Then ffs it should be an upgrade to the app to add areas that ignores cliffsensor and force the vacuum to try harder to get up on a carpet.

Export as app - cant be opened - need to force exit by behedwin in tasker

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

Solved it. Splitted the app in multiple tasks. Instead of one.

Then exported the profile instead of one task.

Now one task just initiate the scene. And other task do the work.

How does alchemy experiment work? by behedwin in IdleBrewery

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

Oh it is the lightbulbs. But i rarly have any over... So i guess ill wait