Forum Discussion
TimD
2 years agoQrew Trainee
this might get you started:
Code Pages - CopyText.html (quickbase.com)
you put the value to be copied on the formula URL, in this case, it is the [text] field
and then on the code page, you have this code to take that value from url
let urlParams = new URLSearchParams(window.location.search);
let copyText = urlParams.get('copyText');
------------------------------
Tim D
------------------------------
WilliamHunter
2 years agoQrew Trainee
Perfect. I will take a look here. Thank you.
------------------------------
William Hunter
------------------------------
- WilliamHunter2 years agoQrew Trainee
Okay excellent got it thank you! I forgot one line of code.
------------------------------
William Hunter
------------------------------