Posts by Jorge Ribeiro • 146 points
6 posts
-
1
votes1
answer45
viewsA: How to get the list of Voices ids associated with a given Search party
You can use odata queries to apply the filters you want: Call examples: {{url}}/api/{{tenant}}/{{organization}}/billing/invoices/odata?$filter=BuyerCustomerParty eq 'Party'…
apianswered Jorge Ribeiro 146 -
1
votes1
answer32
viewsA: VBA Excel Code
Here is an example, just choose the Sheet where you want to make the change, column and source and destination line and number of elements: Sub Horizontaltovertical() Set Source =…
excel-vbaanswered Jorge Ribeiro 146 -
0
votes2
answers141
viewsA: Unable to regenerate a secret client in Jasmin
This problem is being analyzed, it is actually a product anomaly. To circumvent it may generate a new application and client secret. If you want to keep the application id and generate new client…
-
0
votes2
answers94
viewsA: Problem when creating client
I made exactly this call by POSTMAN and occurred without problems, either creating the Party or creating a customerParty. Validate if you are calling the correct endpoint and if it works using…
node.jsanswered Jorge Ribeiro 146 -
1
votes1
answer1649
viewsA: How to count different names in a vba column?
Good morning, can use the next function that counts the single values: Public Function CountUnique(rng As Range) As Integer Dim dict As Dictionary Dim cell As Range Set dict = New Dictionary For…
-
0
votes1
answer57
viewsA: Read download data using Backgroundworker Progresschanged
Good morning, Progresschangedeventargs do not actually contain these properties, as you can see here:…