Questions tagged [blank-line]

Blank-Line refers to any existence of an empty line of data or the creation of an empty line on a form created by the *enter* or *return* keys.

Blank-Line, when referring to data, is used in the description of any record in a table/query where data does not exist. This could be in reference to creating a blank line of data, or determining where a blank line of data exists.

Blank-Line, when referring to a form, is used in the description of any line which contains nothing but white space. This could be in reference to shifting data downward or upward in a form or report, or shifting controls downward or upward in a form or report.

237 questions
0
votes
1 answer

SQl Server 2014 BCP BulkCopy remove final blank line

Please can anyone advise if there is a method which can be used to stop SQL Server's BCP bulk copy command creating a final carriage return and hence a blank line at the end of the file? I have been Googling but cannot hit on a suitable answer. The…
Dib
  • 2,001
  • 2
  • 29
  • 45
0
votes
1 answer

Why are empty lines being generated in orbeon's source code for forms?

When working with a complicated form in the orbeon form builder and checking the source code, I see that there are huge amounts of empty lines added. This causes the code to grow from about 20k lines of code to even 10 times larger, 200k(!). What…
0
votes
2 answers

SED How to change lines to blank

I want to change the lines that include a keyword to blank that s what I initially thought sed -i "/.*$keyword.*/c\ " file; But this actually replaces lines with a space Thus when I search for the blank lines "^$" doesn't work What can I do about…
MattSt
  • 1,024
  • 2
  • 16
  • 35
0
votes
0 answers

Error handling for stream with Twitter's API. (Blank lines and receive problems)

I'm trying to modify the functionality in my teacher's module for saving tweets from Twitter's Streaming API. The problem is that if I keep the stream open for more than a minute, the API starts sending blank lines to the stream in order to verify…
Raze
  • 75
  • 9
0
votes
1 answer

Removing blank entries from Excel data validation with dependant lists

I need help removing blank entries from an Excel data validation list. I’ve looked at various solutions, but in my implementation I am using dependent lists to drive several VLOOKUP, so none of the solutions I have found seem to work. As an Excel…
0
votes
1 answer

Zero Length String Microsoft Access

In excel, I have a text string, which contains numbers and text, that I strip the numbers out of with a formula. However, sometimes it is possible that the text string will be blank to begin with so if this happens I use "" to return a blank…
user3772305
  • 39
  • 1
  • 5
0
votes
1 answer

Delete grouped blank cells when stacked

I'm trying to sort out a manifest that needs to be converted to a different format. Just wondering, is there a way for to find a group of blank cells and delete them, using VBA? The files look like this: name address address region -blank…
0
votes
1 answer

Suppressing Blank lines in "If..then...else" word mail merger

I am trying to send out a mass mail merge email to clients who are in an accreditation process. I am using an Excel spreadsheet in the merger, and in the datasheet if the client has taken a class I indicate it with the number of credit hours (so…
0
votes
2 answers

Delete the first line using Tie::File without leave a newline at the end of the file

I use the following code to delete the first line of a file: use Tie::File; tie @task_queue, 'Tie::File', $queue_path or die $!; shift @task_queue; $#task_queue -= 1; untie @task_queue; The file content is like: line1 line2 line3 But when I use…
wuyefeibao
  • 237
  • 1
  • 9
0
votes
2 answers

How to display blank values in column in pandas crosstab Dataframe?

I been using the pandas library, and crosstab to create a frequency Dataframe to work with Data. In the following code I read in a csv, create a dataframe then create a crosstab which is a frequency dataframe. Then I get a cross-section of the data…
carevans88
  • 79
  • 1
  • 4
  • 16
0
votes
1 answer

How to remove space between h2 and paragraph

I want to remove the blank line between my h2 and p elements that is in an article tag (Why use article? MY instructor asked that we use 5 new html5 elements in our project.) I have tried: #prime h2 { margin-top:0em; } #prime p { …
user2847948
  • 139
  • 1
  • 5
  • 15
0
votes
2 answers

Java deleting blank line in an txt file

I delete some lines from an text file that works fine but I have an problem with blank lines. Those still inside the .txt file and I don't know how to remove or put those up I searched for an solution on google and here but I failed. Have anybody an…
Alex
  • 457
  • 6
  • 12
  • 27
0
votes
1 answer

Skip over a blank line while scanning through a file

I have a file in this format: Gray M 0 0 869 0 0 0 0 0 0 0 0 0 0 0 Mart M 722 957 0 0 0 0 0 0 0 0 0 0 0 0 Adolfo M 0 995 0 859 0 646 742 739 708 731 671 649 546 0 Livia F 0 0 0 0 0 0 0 0 0 0 0 0 0 826 Mearl M 0 0 947 0 0 0 0 0 0 0 0 0 0…
user2943615
  • 113
  • 3
  • 7
0
votes
1 answer

Error when reading every line in excel with blank lines

Hi i'm having a problem here. I have a simple excel file and all i want to do is to read all rows in a column and find a specific string. But an error appears, 'Conversion from string "START" to type 'Double' is not valid ERROR', and i google it and…
Aljie
  • 190
  • 1
  • 4
  • 15
0
votes
1 answer

iReport - removing blank lines from field output

I am trying to format a multi-line text field to remove blank lines in a report. After a bit of reading I have come up with the following regular expressions but the iReport compiler (not the editor as originally stated) won't accept these as valid…
Linker3000
  • 252
  • 1
  • 2
  • 11