Search found 24 matches
- Wed Jan 29, 2025 8:04 pm
- Forum: General Discussion
- Topic: attachment overwrite not working
- Replies: 1
- Views: 6160
attachment overwrite not working
attachment overwrite not working
- Thu Jan 16, 2025 5:51 pm
- Forum: Suggestions
- Topic: Check who has file open
- Replies: 3
- Views: 38777
Re: Check who has file open
When feeding data into a spreadsheet, I take a different approach. First, I create a data source, which can be a TXT, CSV, or even an Excel file. The target spreadsheet retrieves the data using Power Query, making the process efficient and streamlined.
- Mon Dec 23, 2024 8:45 pm
- Forum: General Discussion
- Topic: CSV DATA LOOP
- Replies: 7
- Views: 25729
Re: CSV DATA LOOP
What do you think about storing the line variable in a .txt file alongside the CSV, including the machine ID in the file name? This way, multiple machines can read the CSV without conflicts.
- Mon Nov 04, 2024 5:33 pm
- Forum: General Discussion
- Topic: restart process if it reaches over x amount of memory
- Replies: 3
- Views: 28268
Re: restart process if it reaches over x amount of memory
powershell script
Code: Select all
$mem = Get-CimInstance -ClassName Win32_OperatingSystem
$usedPercentage = [math]::Round((($mem.TotalVisibleMemorySize - $mem.FreePhysicalMemory) / $mem.TotalVisibleMemorySize) * 100, 2)
"$usedPercentage%"
- Mon Oct 21, 2024 5:48 pm
- Forum: Suggestions
- Topic: Use Variable in input Date Filter
- Replies: 0
- Views: 69159
- Tue Oct 15, 2024 5:22 pm
- Forum: General Discussion
- Topic: Between certain time period
- Replies: 4
- Views: 39724
Re: Between certain time period
;***************************** ;* RoboTask Task file ;* Do not edit in text editor! ;***************************** [Root] ActionAfterRun=INTEGER|0 Actions=FOLDER Automat=INTEGER|-1 CatID=INTEGER|1864609949 Comment=STRINGLIST ContinueOnError=INTEGER|0 DisableOnError=INTEGER|0 DoNotStopWhenShutdown=I...
- Tue Oct 08, 2024 9:10 pm
- Forum: General Discussion
- Topic: JavaScript - assign result of fn to variable robotakst
- Replies: 1
- Views: 28453
JavaScript - assign result of fn to variable robotakst
function fn(a, b) {
return a + " " + b;
var result = fn("hello", "world");
RoboTaskApp.AddUserVariable(RoboTaskApp.ExpandText(VariableNameResult, result);
could help format the synthase
tks
return a + " " + b;
var result = fn("hello", "world");
RoboTaskApp.AddUserVariable(RoboTaskApp.ExpandText(VariableNameResult, result);
could help format the synthase
tks
- Wed Sep 25, 2024 4:45 pm
- Forum: Suggestions
- Topic: Public library of macros and freelancer marketplace
- Replies: 1
- Views: 63105
Re: Public library of macros and freelancer marketplace
I believe it would be to create a new section here on the forum
- Tue Sep 24, 2024 5:35 pm
- Forum: General Discussion
- Topic: Delete all files from a folder that is located in multiple locations? One Command
- Replies: 7
- Views: 55160
Re: Delete all files from a folder that is located in multiple locations? One Command
You can add multiple folder and file, it will create a directory list
- Thu Sep 05, 2024 7:08 pm
- Forum: General Discussion
- Topic: structuring code
- Replies: 2
- Views: 44968
Re: structuring code
In Power Automate Desktop, you can separate functions into different tabs, which helps organize workflows. You apply a similar logic in RoboTask by calling external tasks from the current one and returning with the expected variables.