27,288 questions
-4
votes
0
answers
25
views
How to send parameters to Dataverse while moving to next stage using JavaScript in Dynamics 365 BPF?
I am working with Dynamics 365 Business Process Flows and I want to move to the next stage using JavaScript. The stage moves successfully, but I also want to pass one or more parameters to Dataverse ...
-1
votes
0
answers
148
views
Python - My coin counting code doesn't work for inputs between $1.09-$1.16 and I dont know why
I'm very new to programming and am writing this code for an intro programming class project. It takes an input from the user in dollars and outputs how many different ways you can create that input ...
1
vote
1
answer
43
views
How to bind viewmodel collection to dynamically-created ItemsControl in code?
In my Avalonia app I have a user control (UC) that has some databound controls and a StackPanel that has controls added to it dynamically from code-behind. This UC is then dynamically added to an ...
0
votes
1
answer
76
views
How can I hide or collapse subtotal rows in an Excel PivotTable?
I'm wondering if this is possible, as with pivot tables in excel there is an option to expand or collapse all fields. If you try to record this in Automate, it says this action cannot be recorded. A ...
0
votes
2
answers
61
views
How create a dynamic cumulative sum in power query
I want to create a sum in power query (Measure C below) returns the cumulative sum of Measure A + Measure B and is limited to zero and which resets at the beginning of each Period as shown in the ...
-1
votes
2
answers
104
views
Selenium interaction with accordion list [closed]
I'm trying to scrape the data off this site.
The website shows a charging station, in this case you can click each to unravel the accordion and see the data per charger. I am trying to use this ...
3
votes
1
answer
112
views
Using a dynamic query in an Oracle stored procedure
I am trying to run something similar to this within a stored procedure in Oracle.
pWhereCLAUSE is generic which I set depending on the table I am working on. The following code runs just if I have the ...
0
votes
2
answers
44
views
Karate - How to insert dynamic array in a json variable
I try to include a dynamic array in a json variable and it fails.
hostsArray is dynamically built
# sample of hostsArray
* def hostsArray = '[{"hostid": "1234"},{"hostid"...
0
votes
0
answers
60
views
How can I dynamically write each feature class to a separate layer with a modified name when using a single merged feature type reader?
I have a set of feature classes inside a File Geodatabase, which I read using the "Single Merged Feature Type" option in FME. After reading, I perform some analysis on the data.
At the end ...
0
votes
1
answer
49
views
How to programmatically map Akeneo attributes to Magento 2 custom attributes from a webhook payload?
I'm building a Magento 2 module to synchronize product data from Akeneo PIM using webhooks. My current approach for mapping attributes from the Akeneo payload to a Magento product is hardcoded, which ...
1
vote
0
answers
127
views
VBA Excel - Enable and disable controls in a form depending of a combobox value
I have a combobox control in a form made for an Excel application, using VBA. Let's suppose that the combobox is called cmb010. Next to it there are 2 other controls called txt011, cmb012 and txt013. ...
0
votes
1
answer
68
views
VBA: Check/Tick specific dynamic checkbox when Togglebutton is clicked
I have created a UF reading in various tabs (opt) with each tab having between 10 to 19 entries which I display in a Multipage checkbox list.
Now I'm trying to create various Togglebuttons which ...
0
votes
0
answers
39
views
Dynamic route on nextjs deployed on vercel not working
I was working on Nextjs BLOG project, built api's then deployed it in Vercel post, get all, and delete seem to work. But get indivisual post to view and put method for editing don't work, (dynamic ...
0
votes
0
answers
42
views
Performance of inline JSX arrays with dynamic length
I’m new to React and I want to understand how rendering an inline array in JSX—with a dynamic length that depends on an external variable—affects performance. For example:
return (
<>
{...
-1
votes
1
answer
164
views
Importing a table from website into google sheets [closed]
I am trying to produce a spreadsheet which gives me football teams recent performance, much quicker than searching different HTML pages for each league.
I found a previous website that showed each ...
0
votes
0
answers
97
views
How to use response_format with dynamic Pydantic attributes (Mistral LARGE API)
I'm using Mistral Large to analyze PDFs. As input, I provide the PDF and a response-format, which is a Pydantic class defining the output structure.
Here is my api call:
chat_response = self.client....
1
vote
2
answers
114
views
Updating table names dynamically in formulas in VBA
Update: Thank you all - Having the spaces before and after the ampersands in the CountA solved the problem in one location, and being able to use the Row(Table) function suggested in the comments ...
1
vote
2
answers
51
views
How can i change homepage icon svg to solid in Angular app?
I have a sidebar component and there is a navigation menu inside it with some buttons. This is button component HTML template:
<a
routerLink="{{ data[index].href }}"
class=&...
0
votes
1
answer
36
views
How to create dynamic connection string in shared datasource in SSRS report(.rdl)
I have a requirement to create dynamic connection for SSRS reports where the connection information (Server & DB) will be worked out in c# code, so no interaction with end user selecting(Server or ...
0
votes
1
answer
103
views
Dynamic pointer arrays
I want to allocate an array of struct pointers, then initialize all the pointers. it is actually a 2D array, but I'm allocating a 1D array, and handling the offset manually. Here's what I have:
// ...
0
votes
0
answers
38
views
How to dynamically render Flex DataGrid?
My company still uses adobe Flex in a legacy system. My task is to dynamically render a DataGrid based on a list returned from API call. Simply speaking, the number of DataGridColumn, the ...
0
votes
0
answers
42
views
Fix a layer orientation within a symbol in Illustrator?
I need a symbol in Illustrator, that needs to be rotated differently for each instance. However, a part of it, just one layer, should remain fixed at the same orientation.
I know I can achieve it by ...
2
votes
3
answers
106
views
Dynamic Reference Two Named Table Columns via Content in Two Cells
I'm using Microsoft Excel 365 and have uploaded a screenshot of my problem. I have two tables, Table1 on the left and Table2 on the right. Table2 is to take the content from Table1 with its column ...
0
votes
0
answers
34
views
IRFs Appear Reversed in RBC Model Simulation - Problem with Recursive Shock Application?
I'm trying to simulate a fairly standard RBC model. The equations used in the code are all correct based on the chosen specification, so my question relates more to the implementation side.
...
1
vote
2
answers
135
views
Dynamically updating and doing math on arrays in Excel
I am dynamically populating an array in Excel from another array in a different sheet based on a criteria and was successful in that but now I wish to auto update the returned total based on another ...