My problem is the following:
I need to assign a value to the recordset. The problem isthat I need to use a variable. So, instead of write this
MyRecordSet![field_name]
I need to write this
MyRecordSet![variable_name]
This all look simple even to me, until I find out that inside the brackets there are no quotation marks to separate strings of text from variable names. Therefore, I can't distinguish them.
Please, guys, help me! I've tried everything you can imagine.
Thanks in advance.
MyRecordSet.Fields(variablename)
Related
I would like to list the lines where there is a FAIL written.
As it sounds very simple in VBA it seems fairly complicated to integrate that in a cell formula.
So I wanted to know if there was a simple way of listing all thoses matches.
I have tried this =TEXTJOIN(",";TRUE;IF(Y23:Z90="FAIL";1;"")) just to try a function I saw on internet but it gives me #value! error and I don't know why.
I then wanted to do something like =TEXTJOIN(",";TRUE;IF(Y23:Z90="FAIL";ROW(Y23:Z90);"")) but I'm guessing this would definitely not work.
I saw that we could do it with index and aggregate but it seems really too complicated for such a simple problem. However if this is the only solution I will take a more serious look at it.
Does anyone has a better way to do what I want to do?
Thanks in advance!
Ok thanks to Peter, I solved my problem and {=TEXTJOIN(",";TRUE;IF(Y23:Z90="FAIL";ROW(Y23:Z90);""))} works and gives me a list of the lines.
I'm facing a problem when we try to concatenate to spinets into one.
There is a space between the two spinets, so the text ends missformated.
Has anyone see this problem, if yes, any clue on how to fix it?
Thanks in advance!
Bye.
Using trim() function before concatenating the snippets will help remove the extra spaces.
If you are using variables to store the snippets, then the variable has in built property to trim the spaces i.e. the space before , after or in-between.
I want to print:
Hi, let's do this:
the issue is, it won't work with the "let's" due to the apostrophe. If I use quotes around this (""), it prints the quotes as well in the view, which I don't want.
How do I do this in React Native?
Try this
<Text>{"Let's"}</Text>
Try <Text>{"Hi, let's do this"}</Text>.
Any time you encounter any difficulty using a Text label, just remember that inside the brackets the rules of JavaScript apply, and so you can do anything in the same way that you would for a JS string.
A temporary work around is to use ' instead of '
so i got an issue with text formatting and i have no idea how this problem is called or what i should search after, so i thought i try to explain it here.
It's literally nothing dramatic or should take long, i simply want to write stuff like
''italic'' or '''bold'''
without that it actually gets italic or bold... i literally want
''italic''
to be displayed. I've also tried to use code blocks but even within the blocks it writes italic then.. i'm sure there is a <..> command but i simply can not find it
Does anyone know?
try this:
<nowiki>''italic''</nowiki>
According to Oracle at JTextArea documentation, if you wish to wrap lines AND wrap at word boundaries and not character boundaries you must use code as follows:
jtaOutputPrimes.setLineWrap(true);
jtaOutputPrimes.setWrapStyleWord(true);
Please note that the jtaOutputPrimes is the name of my JTextArea on my JPanel.
The issue comes in when I use the method append to add text to the JTextArea as follows:
jtaOutputPrimes.append(",");
In this case, the setWrapStyleWord setting does not work. It continues to use the character boundaries and not the word boundaries.
I have found another person experiencing same issue here: setWrapStyleWord issue
Now, lets say you are running an JApplet that has this JTextArea. If you type in the text area, it will word wrap fine, but any passed text from the append method does not work.
I believe this is a bug, and I cannot find Oracle acknowledge it as such anywhere.
Can anyone help? Thanks!
I found out why this was happening, and this simple fix may be beneficial to others. The issue came into play because when I appended the comma (,) to the JTextArea it was eliminating the white space between words. To fix this, I simply placed a space after the comma like so, and it worked.
jtaOutputPrimes.append(", ");