Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i want to repalce
the string >} inside the string tbl_Diagram_frm1_2 with a string wich contains some quotes -->
', DateYYYY_kum= {'>=$(Datumfilter1)'}, DateYYYY_kum= {'<= $(Datumfilter2)'} >}')
i tried -->
=
replace ( tbl_Diagram_frm1_2, ' >}', ', DateYYYY_kum= {'>=$(Datumfilter1)'}, DateYYYY_kum= {'<=
$(Datumfilter2)'} >}')
but it dosnt work - i think because of the quotes - i need some input about that
thanks in advance
regards
Georg
Change quote in your replacement string to Chr(39)
For special characters use CHR() instruction to replace or combine strings
Change quote in your replacement string to Chr(39)
perfect! thanks a lot!
great help! thanks!