cfspreadsheet combine two sheets with one on top? [closed] - coldfusion

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
Is it possible to easily combine two xlsx spreadsheets? I basically just want to take sheet1 from spreadsheet1.xlsx and put it at the top of sheet1 on spreadsheet2.xlsx

I suspect you’ll need to read each spreadsheet into a query object and then perform a UNION on those two queries to join them (one on top of the other), and then write out that new object into a new spreadsheet.
https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-tags/tags-r-s/cfspreadsheet.html

Related

Running C++ functions from a web page [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 months ago.
Improve this question
I have a complicated C++ function that takes as input some files describing geometry and outputs some files describing resulting geometry. I'd like to provide an interface to this function on a webpage with the function being computed on a powerful computer. What are some good options that don't require me to rewrite the function in another language?

What is the best way to learn Django? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
What is the best way to learn Django?
Make a simple Blog Website .Learn HTML CSS First .Follow youtube Videos.And Most important follow Documentation.

How can I acheive this transformation in google sheets? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I want the rows on the left to be transformed into the one on the right (by splitting on a comma) ,
Actual data contains thousand of such rows, how can I do it easily?
use:
={A1:D1; ARRAYFORMULA(SPLIT(QUERY(FLATTEN(IF(IFERROR(SPLIT(C2:C, ","))="",,
A2:A&"♀"&B2:B&"♀"&SPLIT(C2:C, ",")&"♀"&D2:D)),
"where Col1 is not null"), "♀"))}

How to add custom visualisations to apache superset [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I would like to add a custom visualisation to apache superset, but sadly most of the examples are outdated. i.e the files that I am meant to make changes are either non-existent or the code structure has changed significantly.
Can anyone help me with steps to follow in order to add a custom visualization

I need a regex for the following combination [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
mission_id: a498094578a
mission_id: a493453456
mission_id: 498343454a
mission_id: 34534535345
From the above 4 mission_id's I need your help in writing a regex pattern which covers all the four mission_id but need to select only the numbers.
So one the first one - need to exempt 'a' and only the numbers.
mission_id:\s*\w?(\d*)\w?
That should work; maybe add any flags you need for parsing multiline text or whatever.
www.regexr.com is a great resource for trying out RegExps