Forum Discussion
lcunha
4 years agoRegular Visitor
Expression.Error We cannot convert the value List to type Text
Hi, I'm having trouble with this code right here: let
base_URL = "https://<company>.pipedrive.com/api/v1/deals/",
Fonte = pip_Deals_IDs,
pipedrive_table = "/products",
admin_t...
- Anonymous4 years ago
Hi lcunha
This line, it is a list
deal_id = Fonte[deal id],you can do
deal_id = [deal id],or make sure it is text
deal_id = Text.From([deal id]),
Anonymous
4 years agoNot applicable
Hi lcunha
This line, it is a list
deal_id = Fonte[deal id],
you can do
deal_id = [deal id],
or make sure it is text
deal_id = Text.From([deal id]),