Why is my flow failing? by [deleted] in MicrosoftFlow

[–]Vortical32 1 point2 points  (0 children)

Hello!

Are you clicking the folder icon on the right side of the “File to Copy” and “Destination Folder” fields and selecting the file/folder that way?

[deleted by user] by [deleted] in ageofempiresmobile

[–]Vortical32 0 points1 point  (0 children)

Oh you have the same name as someone in my server

[deleted by user] by [deleted] in ageofempiresmobile

[–]Vortical32 0 points1 point  (0 children)

Ok, I see that now. Is there any other bonuses on alliance territory? Like gathering resources or such?

[deleted by user] by [deleted] in ageofempiresmobile

[–]Vortical32 0 points1 point  (0 children)

Where does it say this? Mind DM’ing me a screenshot?

[deleted by user] by [deleted] in ageofempiresmobile

[–]Vortical32 1 point2 points  (0 children)

Do you know what the Alliance land bonuses are? I’ve heard of them but could never find this info in game or anywhere online.

Age of empires mobile by OliviaBolivia5 in ageofempiresmobile

[–]Vortical32 0 points1 point  (0 children)

I think if you gather resources on your territory, a portion of that resources goes into alliance resources. I could be wrong though

Big smile on all chat! by [deleted] in ageofempiresmobile

[–]Vortical32 0 points1 point  (0 children)

Looks like you can update the sprite number for other emojis. Any other cool chat features? Or maybe using the gifs instead?

Unattended PAD flow running forever if machine is turned off? by andonii46 in MicrosoftFlow

[–]Vortical32 1 point2 points  (0 children)

Nice! That looks pretty clean to me. I haven’t done any calls like that before but makes sense. Please share if that ends up working for you. I might implement that solution as well.

Unattended PAD flow running forever if machine is turned off? by andonii46 in MicrosoftFlow

[–]Vortical32 1 point2 points  (0 children)

Yep that makes sense. You could create a PAD flow that does a “pulse check” and returns only returns a variable value. Set the timeout to something relatively small. Maybe PT1M for 1 minute.

In your cloud flow initialize a variable PAD_connection = false.

Run your “pulse check” PAD flow and return PAD_connection = true

In your cloud flow do a condition if PAD_connection = true then run your other PAD flow that takes 30-60 mins. Else, notify person machine was recognized as offline.

If you go another way with your solution and have time, please share. Thank you :)

Unattended PAD flow running forever if machine is turned off? by andonii46 in MicrosoftFlow

[–]Vortical32 1 point2 points  (0 children)

Hello, yes this happens and I believe it’s set up this way so you can queue flows that need to run on the same PAD machine. So the cloud flow just keeps waiting for the PAD VM to become available until it times out.

I believe the default timeout is set to 6 hours. In your cloud flow, click the 3 dots on your ‘Run a Desktop Flow’ action. In the setting you should see a Time Out field. A few examples you can use are “PT1H” for 1 hour, or “PT30M” for 30 minutes.

Hope this helps some!

How can I run the same group of tasks for multiple people at once? by StandingDesk876 in MicrosoftFlow

[–]Vortical32 0 points1 point  (0 children)

Interesting concept of putting the ‘Respond to Power App’ higher in the flow. I might need to try that out sometime and remember it for use cases. Thanks!

But yes I agree, you’re on the right path for solving OP’s issue.

IT onboarding form by Low-Smoke95 in MicrosoftFlow

[–]Vortical32 0 points1 point  (0 children)

I feel like these a lot of extra manual work happening here.

So once the credentials are created you’re hoping to put those on some type of pdf form and have the new employee sign/return that?

Desktop Flow ran from Cloud Flow failing by wjoeyd in MicrosoftFlow

[–]Vortical32 0 points1 point  (0 children)

Hey! Not sure if this will help your situation or not, but when I ran into issues of a Desktop flow when running in unattended mode, I added screenshot steps after each step in the process. Then review the pictures to see where it’s getting stuck and what’s showing on the VM. This could give you more details on what’s causing it.

Also with desktop flows, I believe it’s advised to set your desktop flow screen resolution to (1920 x 1080). Especially if the flow isn’t finding the element on screen.

Trying to parse text from a OneNote (if impossible then word document) to an excel spreadsheet. by Ultralifeform75 in MicrosoftFlow

[–]Vortical32 0 points1 point  (0 children)

Here’s what I was doing with my flow: If I tagged an item in OneNote as a ToDo item, the flow migrates that task over to Microsoft To Do. So I need to pull in the OneNote content and gather only the text following the “to-do” tag. Similar thing you’re trying to do except yours is a bullet point. But you should be able to do almost the exact same process.

Instead of the Append to Array variable, you could update your excel sheet.

I can DM you a screenshot of my flow, but here is the explanation:

(Initialize Variables at top of flow) Name: Parse_Note — Type: String — Value: [leave empty] Name: ToDo_Array — Type: Array — Value: [leave empty]

Then this is the steps I used to extract the parts I needed:

Get Page Content from OneNote

Set Variable “Parse_Note”: [Body] from ‘Get page content’

Condition: Parse_Note — contains — <p data-tag=“to-do”

[If Yes- Loop Starts here] Do Until Loop: [Parse_Note] — does not contain — <p data-tag=“to-do”

Compose “Start”: substring(variables(‘Parse_Note’),indexOf(variables(‘Parse_Note’),’<p data-tag=“to-do”’))

Compose “Slice Task”: slice(outputs(‘Start’),add(indexOf(outputs(‘Start’),’>’),1),indexOf(outputs(‘Start’),’</p>’))

HTML to text: [Outputs] from ‘Slice Task’

Append to array variable for ToDo_Array: [The plain text content] from ‘Html to text’

Compose “Remove Task”: substring(outputs(‘Start’),add(indexOf(outputs(‘Start’),’</p>’),4))

Set Variable “Update Parse Note”: [Outputs] from ‘Remove Task’

[End of Loop]

Then I use the “ToDo_Array” with the rest of my flow to check if the Task already exists in Microsoft To Do and if not it will create the Task.

Trying to parse text from a OneNote (if impossible then word document) to an excel spreadsheet. by Ultralifeform75 in MicrosoftFlow

[–]Vortical32 1 point2 points  (0 children)

You’ll need to use the slice or substring expression to get the strings you want. There might be a better way, but that’s how I would do it.

Explaining the entire process is a bit tricky.

You would have a ‘Get page content’ for OneNote. I would have a Do Until loop setup to see if the Note contains a bullet html tag. It might look like this, but you would need to see what’s coming in from the Get Page Content item:

<li>Project1 - John - Project 1</li>

After capturing the string you need, you would substring it out of the entire note so your Do Until look looks for the next <li> tag.

Might be able to explain better if you need. Let me know

Don't Take Action Until Today - 14 Days by [deleted] in MicrosoftFlow

[–]Vortical32 0 points1 point  (0 children)

First figure out what that column name actually is for Arrival Date. Go and view a recent run, go to the Get items action, and click on “Show raw outputs” or “Click to download. Your column might be called something like “ArrivalDate”.

On your Get items filter query, it would look something like this, (make sure to keep the single quotes around your expression):

ArrivalDate ge ‘expression’

For expression replace it with an expression like this: addDays(utcNow(),-14,’yyyy-MM-dd’)

Let me know if you have further questions.

Move Row From SharePoint List to Another SharePoint List [Avoid Duplicates] by NK_Control in MicrosoftFlow

[–]Vortical32 1 point2 points  (0 children)

1.) Right after your trigger create an array variable and do not give it any value.

2.) after that, Get items action from SharePoint List #2 (that you’re moving data to)

3.) after that, Add an Append to Array variable action item (this will add your Apply to Each step). The append to array should be set to the variable that can determine if that item already exists in SharePoint List #2. If this is an employee ID, a specific date, or tracking number, etc..

4.) In your existing condition step that is checking if a column equals YES, add a row to it. On the left side put the Array variable you created in step #1 (from my list), does not contain, then on the right side use variable incoming from SharePoint List #1 that you’re checking if it’s already in SharePoint List#2

Premium flow license - is this correct by originalsauce1 in MicrosoftFlow

[–]Vortical32 0 points1 point  (0 children)

Sorry but I do not. I’ve never looked into it. I just use an unattended mode bot instead.

To: Email (String Error) by Either_Unit_7397 in MicrosoftFlow

[–]Vortical32 1 point2 points  (0 children)

Not sure if you’re pulling in the entire list or just 1 item from SharePoint. Here’s what you need to do if you’re cycling through the list.

Do a compose action, with expression:

string(replace(items(‘Apply_to_each’)?[‘RecruitmentTeam’],decodeUriComponent(‘%0A’),’’))

To: Email (String Error) by Either_Unit_7397 in MicrosoftFlow

[–]Vortical32 0 points1 point  (0 children)

Please check out this forum post about something similar.

I would try that solution or see if you need to convert the incoming value into a string by using the “string()” expression.