Power Automate Html to text value to rows in a SharePoint list - sharepoint

Please excuse me if I have missed something obvious I am still new to Power Automate.
I have a value that comes from a HTML to Text conversion that I have added a carriage return to. this then creates the below output;
[
"Job 1543",
"Helpdesk 2",
"Laptop",
"",
"25/01/2023 11:12:37",
"Job 1333",
"Helpdesk 1",
"Desktop",
"",
"25/01/2023 11:12:24",
"Job 1675",
"Helpdesk 11",
"Server",
"",
"25/01/2023 11:12:22",
"Job 1145",
"Helpdesk 12",
"Desktop",
"",
"25/01/2023 11:12:18",
"Job 1111",
"Helpdesk 12",
"Mouse",
"",
"25/01/2023 11:12:20",
"Job 1024",
"Helpdesk 11",
"Laptop",
"",
"25/01/2023 11:12:29",
"Job 1016",
"Helpdesk 01",
"Desktop"
"",
"25/01/2023 11:09:53"
]
As you can see every 5 line makes up 1 record, I would like to put the 5 values in to a SharePoint list columns and create a row and then the next 5 to go to the next row and repeat until finishes. this report runs daily and has various amounts of data. I have tried creating a select and mapping values but it just seems to repeat the first line.
Thanks for any help

Related

Select all criteria except one [duplicate]

This question already has an answer here:
Unable to filter out 0s
(1 answer)
Closed last month.
I did a macro in VBA that selects all values except zero and it came down this way.
ActiveSheet.Range("$A$11:$P$101").AutoFilter Field:=4, Criteria1:=Array("1" _
, "10", "100", "110", "118", "119", "120", "14", "152", "16", "18", "19", "2", "209", "21", _
"212", "25", "280", "3", "31", "34", "36", "39", "390", "4", "5", "54", "6", "67", "7", "70", _
"74", "8", "84", "94", "97"), Operator:=xlFilterValues
But those values change but one thing is for sure I need to select all of them except zero.
Is there any way I can do that?
If those values are numbers, probably you need something like:
Criteria1:=">0"
IF those values are strings and you got only single zeros like 0 and not values like 0123 then:
Criteria1:="<>0*"
In both cases you need Operator:=xlAnd

Excel switch case with globbing

I have one column of encoded values like this:
60BM1
90CM2
120MM3
60CM1
120BM2
I want to convert the format according to this formula I created:
="F" & SWITCH(A1, "60*", "1", "90*", "2", "120*", "3") &
"T" & "." & SWITCH(A1, "*BM*", "1", "*CM*", "2", "*MM*", "3") &
"." & SWITCH(A1, "*1", "1", "*2", "2", "*3", "3")
to generate the new column's values
F.1.T.1.1
F.2.T.2.2
F.3.T.3.3
F.1.T.2.1
F.3.T.1.2
But the SWITCH functions don't work. Probably because of the wildstar *s.
How can I perform this kind of pattern-based substitution in excel?
Use MATCH instead:
="F."&MATCH(LEFT(A1,2),{"60","90","12"},0)&".T."&MATCH(MID(A1,LEN(A1)-2,2),{"BM","CM","MM"},0)&"."&RIGHT(A1)

add combobox to excel

I want to export some data as excel in my project. I prepared a structure for this. I want to have comboboxes in some columns in this structure.
I found the example below, but this example doesn't work for me. Normally he should add data one after the other, but he perceives them as a text and adds.
Example
It does not add the addition as a separate element. It adds "Item 1, Item 2, Item 3" into the combobox. How can I solve this problem.
Microsoft.Office.Interop.Excel version 15.0.0.0
I used Office 365.
var items = new List<string>() { "Item 1", "Item 2", "Item 3" };
var formattedItems = string.Join(",", items.ToArray());
var dropDownRange = sunWorksheet.Range["J2"].EntireColumn;
dropDownRange.Validation.Delete();
dropDownRange.Validation.Add(Excel.XlDVType.xlValidateList,
Excel.XlDVAlertStyle.xlValidAlertInformation,
Excel.XlFormatConditionOperator.xlBetween,
formattedItems,
Type.Missing);
dropDownRange.Value = "Item 2";
Concatenating data with "," does not work. Instead of ";" Combining with fixed the problem.
var items = new List<string>() { "Item 1", "Item 2", "Item 3" };
var formattedItems = string.Join(";", items.ToArray());

Attachmate Reflections from Excel VBA

I have been trying to automate Reflections from an Excel macro, code as below. However, there are 2 sessions open, i have attached screenshot of same for reference. Can anyone please help me how i can switch between the already running sessions.
Public objFM As Object
Set objFM = GetObject("RIBM") With objFM
.WaitForEvent rcEnterPos, "30", "0", 4, 41
.WaitForDisplayString "code:", "30", 4, 34
.TransmitTerminalKey rcIBMResetKey
.TransmitANSI "MTAE"
.TransmitTerminalKey rcIBMEnterKey
.WaitForEvent rcKbdEnabled, "30", "0", 1, 1
End With

Export HP ALM test plan to an excel file

Is it possible to export HP ALM test plan cases to an excel file ?
I found some Add-INS that Export to HP ALM from excel.
Thanks for any advices..
In ALM, you can generate an Excel Report using the below SQL query. This should resolve the issue.
SELECT
TEST.TS_TEST_ID as "Test ID", /*Test.Test ID*/
TEST.TS_NAME as "Test Name", /*Test.Test Name*/
TEST.TS_DESCRIPTION as "Test Desc.", /*Test.Description*/
DESSTEPS.DS_STEP_NAME as "Step Name", /*Design Step.Step Name*/
DESSTEPS.DS_DESCRIPTION as "Step Desc.", /*Design Step.Description*/
DESSTEPS.DS_EXPECTED as "Expected Result", /*Design Step.Expected Result*/
TEST.TS_STATUS as "Test Status", /*Test.Status*/
TEST.TS_TYPE "Test Type", /*Test.Type*/
TEST.TS_RESPONSIBLE as "Test Designer", /*Test.Designer*/
TEST.TS_USER_03 as "Test Priority", /*Test.Priority*/
TEST.TS_USER_04 as "Test Reviewer" /*Test.Reviewer*/
FROM
Test,
DESSTEPS
WHERE
DS_TEST_ID = TS_TEST_ID

Resources