html5-img
1 / 28

Creating ICD10 Test Data Using Tools you Already Own

Creating ICD10 Test Data Using Tools you Already Own. Using Excel, UltraEdit, and Batch files to build test data. Introduction. This presentation provides fives steps that users can follow to automate test file creation.

Download Presentation

Creating ICD10 Test Data Using Tools you Already Own

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Creating ICD10 Test Data Using Tools you Already Own Using Excel, UltraEdit, and Batch files to build test data

  2. Introduction • This presentation provides fives steps that users can follow to automate test file creation. • The example is for creating files used in a code set release where the test files could be identical with the exception of four fields which needed to have a unique code per file.

  3. Four Steps • Build a “Template” file • Preparing your file for Excel • Using Excel to update the data • Using batch files

  4. Build a “Template” file • Start with a clean file (no errors, IG edits, business edits, etc.) • In our example we’re building X12 837I’s (Institutional health care claims) beginning with the following file.

  5. Barry DeBruin - November 9th, 2004

  6. Barry DeBruin - November 9th, 2004 Preparing your file for Excel First we determine differences needed for each file: • We need to change the HCPCS code in three places and modify the CLM01 for tracking. • To isolate the fields to update, insert a TAB before and after the field. • Once this is completed, we’ll also need to unwrap the file by removing the carriage return/line feeds to give us a continuous string of data (~^p with ~). NOTE: The same commands can be used in Word. Here’s how using UltraEdit…

  7. Barry DeBruin - November 9th, 2004

  8. Barry DeBruin - November 9th, 2004

  9. Barry DeBruin - November 9th, 2004

  10. Barry DeBruin - November 9th, 2004 Using Excel to update the data • Copy the string of data from UltraEdit to a new workbook in Excel. • The tabs will separate your data into their own columns. • Autofill as many rows as you need test files.

  11. Barry DeBruin - November 9th, 2004 Note that each code has it’s own column

  12. Barry DeBruin - November 9th, 2004 • Highlight the entire row. • Autofill by using the black cross (hold cursor over black dot) • Drag it down as many rows as needed.

  13. Barry DeBruin - November 9th, 2004

  14. Barry DeBruin - November 9th, 2004 • You must have the data for each row separated with carriage return/line feeds. • Highlight your data and copy it for pasting onto the Excel spreadsheet.

  15. Barry DeBruin - November 9th, 2004 Paste into each column requiring an update.

  16. Barry DeBruin - November 9th, 2004 You may modify any column as show on these slides.

  17. Barry DeBruin - November 9th, 2004 You may modify any column as show on these slides.

  18. Barry DeBruin - November 9th, 2004 You may modify any column as show on these slides.

  19. Barry DeBruin - November 9th, 2004 You may modify any column as show on these slides.

  20. Barry DeBruin - November 9th, 2004 Using batch files Now we’ll create a batch file to pipe data to multiple files. • Copy the data from the spreadsheet into a text file and save. • Remove all TAB characters.

  21. Barry DeBruin - November 9th, 2004

  22. Barry DeBruin - November 9th, 2004

  23. Barry DeBruin - November 9th, 2004

  24. Barry DeBruin - November 9th, 2004 Using batch files, cont’d. Using UltraEdit we can use column mode to build a working batch file. • Save this file as a batch file (*.bat). • Identify a unique text pattern on each line. • Using the FINDSTR function from a DOS batch file we can build our individual files using each rows unique “Text Pattern” (aka Regular Expressions). • The syntax is as follows:FINDSTR /R "ISA.*I_AE_ADDED_PASS" Example.txt > I_AE_ADDED_PASS.txt

  25. Barry DeBruin - November 9th, 2004 Cursor is here Using Column mode we can insert character into a specific column thereby building our batch file. Here we are inserting a period in the fourth column to begin building our regular expression.

  26. Barry DeBruin - November 9th, 2004

  27. Barry DeBruin - November 9th, 2004 Your final batch file should look something like the following.

  28. Barry DeBruin - November 9th, 2004 We can see the files build as the batch file runs.

More Related