Power Query: Apostrophe in Custom Column Name - powerquery

I have an odd situation that I haven't been able to find an answer to. In Power Query, my custom columns have suddenly developed an apostrophe before the field name.
[
The code line is below, which doesn't include any tick marks and the field is formatted as dates so not sure where this is coming from. I tried deleting the apostrophe manually once the results loaded in Excel, but wasn't successful (delete apostrophe, hit enter, return to cell and it's still there). Any ideas?
"Added Custom" = Table.AddColumn(#"Changed Type3", "Renewal_Date", each Date.EndOfMonth([DATE_MATURITY_NEXT]))

There is no apostrophe in the field name. You are loading the results into a table on the excel sheet, and that is how it displays left-aligned text in the formula bar. Try formatting the cell as right-aligned and the display will show "Renewal_Date; with center alignment formatting will show ^Renewal_Date
See prefix section of excel documentation
Text value corresponding to the "label prefix" of the cell. Returns single quotation mark (') if the cell contains left-aligned text, double quotation mark (") if the cell contains right-aligned text, caret (^) if the cell contains centered text, backslash () if the cell contains fill-aligned text, and empty text ("") if the cell contains anything else.

Related

How to sort emails data using its color codes in emeditor

I have this little challenge.
I want to ask, how do i sort the emails using the color code (light green) as stated in this picture here
I have tried to remove the non emails by scrolling through, but i need a solution that can make it a one click through sorting.
I will appreciate your kind response.
Open the Replace dialog box and enter the following regex in the Find field:
^((.*#[^\.]*)|([^#]+))$\n
Change the radio button to Regular Expressions. This regex pattern finds any line without a dot after # or any line without a #. Note that you need the last line of the document to be empty as shown in line 7 of your document.
Since we are deleting those lines, the "Replace with" field is blank. Now click Replace All.

InDesign data merge—"remove blank lines" resulting in extra characters

I'm using data merge to import two variables per line, and have checked the "Remove blank lines for empty fields" box. The result is a wealth of extra characters that I can't remove using find-and-replace. Of the 24 lines of variables, typically only three contain text, so the other 21 should be empty lines and be deleted by the "Remove blank lines" option.
Attempting to paste these characters into the "find and replace" field, I see
^|^|^|^|^|^|^|^|^|^|^|^|^|^|
Any suggestions? Thanks
Try doing a regular text find/change.
In the Find What field, type < FEFF > (but delete the spaces before and after those angle brackets – the Stack Overflow editor seems to delete this if there are no spaces).
In the Change To, leave blank, and click change all.

PowerPoint addin: Justify alignment in a text-box

Explaining the problem
I am developing an addin in powerpoint and i am trying to create a textbox with justify alignment:
Shape newTextBox = currentSlide.Shapes.AddTextbox(...);
TextRange boxTextRange = newTextBox.TextFrame.TextRange;
textRange.ParagraphFormat.Alignment = PpParagraphAlignment.ppAlignJustify;
The results are not as expected. When i type an 'enter' character in this box, the line is not justified. Why? Because with every 'enter' character, a 'paragraph' character is automatically inserted. Here is a screen shot of the copy-pasted text from the powepoint text-box to a word document:
In every case, the line is considered the last line of the paragraph and it is not justified.
However, if i try to do the same thing on the title textbox in the default title layout slide, there are no 'paragraph' characters.
Question time ...
Is there a way to stop these characters from being automatically entered in the text box? Maybe an option that i can set via code?

Xcode displaying quotation marks within my label code

Hi I wish to display my quotation marks within my label, For example below displays what I want it to display but because of the nature of the quotation it only separates sections of context, how can I change my quotation marks so that I can display them.
#"MsgBox("Hello World")",
Try this out: #"MsgBox(\"Hello World\")"

nstableview + cannot show partial file names

I am using Table View Control. In the control, I show File/Folders details, if I reduce the size of file/folder name column, it does not show partial file/folder name (whatever characters can be shown in the Column).
If a file name has multiple words in it, if enough space is not there to show a word then that word does not get shown at all, instead of showing some characters in that word (Either a word gets shown completely, or not at all)
I want to know how to resolve this issue.
Thanks so much.
Set the line break mode of the column's text cell, using either the Attributes inspector in IB or a setLineBreakMode: message to the cell.

Resources