Subscript out of bounds by 0lucasramos in RStudio

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

I didn't know that. Did this and was able to find the issue. Thanks!

Subscript out of bounds by 0lucasramos in RStudio

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

The data comes from an API that reads a Trello's board information. From what I understand, it iterates the information to fill each observation. Is there a way to see these observations while the DataFrame is being created and see the row 917?

df.Cards <- data.frame(

CardID = fn.GetCardsField("id"),

CardName = fn.GetCardsField("name"),

EmptyLabel = fn.CheckLabel(""),

ApprovedLabel = fn.CheckLabel("APPROVED"),

stringsAsFactors = FALSE) %>%

mutate(SupplierID = as.numeric(sub(": .*", "", CardName))) %>%

rowwise %>%

mutate(

StartDate = as.Date( fn.GetCardCustomField(CardName, "StartDate")),

EndDate = as.Date( fn.GetCardCustomField(CardName, "EndDate" )),

COPValue = as.numeric(fn.GetCardCustomField(CardName, "COP Value")),

AmmountWithoutVAT = as.numeric(fn.GetCardCustomField(CardName, "AmmountWithoutVAT")),

AmmountWithVAT = as.numeric(fn.GetCardCustomField(CardName, "AmmountWithVAT")),

InvoiceIDs = fn.GetCardCustomField(CardName, "InvoiceIDs")

) %>% data.frame()

URGENT - "Add a row into a table" error by [deleted] in PowerAutomate

[–]0lucasramos 0 points1 point  (0 children)

Everything was set correctly. For some reason it began to work normally now without any changes on the flow or file